tsconfig.json 664 B

123456789101112131415161718192021222324252627
  1. {
  2. "extends": "../../tsconfig.shared.json",
  3. "compilerOptions": {
  4. "strict": false,
  5. "outDir": "lib",
  6. "rootDir": "src",
  7. "baseUrl": ".",
  8. "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
  9. "paths": {
  10. "ephox/agar/test/*": ["src/test/ts/module/ephox/agar/test/*"],
  11. "ephox/agar/demo/*": ["src/demo/ts/ephox/agar/demo/*"],
  12. "ephox/agar/*": ["src/main/ts/ephox/agar/*"]
  13. }
  14. },
  15. "include": [
  16. "src/demo/ts",
  17. "src/main/ts",
  18. "src/test/ts"
  19. ],
  20. "references": [
  21. { "path": "../jax" },
  22. { "path": "../katamari" },
  23. { "path": "../katamari-assertions" },
  24. { "path": "../sand" },
  25. { "path": "../sugar" }
  26. ]
  27. }