tsconfig.json 614 B

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