tsconfig.json 722 B

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