tsconfig.json 636 B

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