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