tsconfig.json 368 B

12345678910111213141516171819
  1. {
  2. "extends": "../../tsconfig.shared.json",
  3. "compilerOptions": {
  4. "strict": false,
  5. "outDir": "lib",
  6. "rootDir": "src",
  7. "baseUrl": ".",
  8. "tsBuildInfoFile": "lib/tsconfig.tsbuildinfo",
  9. },
  10. "include": [
  11. "src/main/ts",
  12. "src/demo/ts",
  13. "src/test/ts"
  14. ],
  15. "references": [
  16. { "path": "../boulder" },
  17. { "path": "../katamari" }
  18. ]
  19. }