tsconfig.json 628 B

12345678910111213141516171819202122232425
  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/boulder/test/*": ["src/test/ts/module/ephox/boulder/test/*"],
  11. "ephox/boulder/demo/*": ["src/demo/ts/ephox/boulder/demo/*"],
  12. "ephox/boulder/*": ["src/main/ts/ephox/boulder/*"]
  13. }
  14. },
  15. "include": [
  16. "src/demo/ts",
  17. "src/main/ts",
  18. "src/test/ts"
  19. ],
  20. "references": [
  21. { "path": "../agar" },
  22. { "path": "../katamari" },
  23. { "path": "../katamari-assertions" }
  24. ]
  25. }