tsconfig.json 534 B

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