tsconfig.json 595 B

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