tsconfig.json 386 B

12345678910111213141516
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "outDir": "dist",
  5. "rootDir": "src",
  6. "types": ["node"]
  7. },
  8. "include": ["src"],
  9. "references": [
  10. { "path": "../../packages/shared" },
  11. { "path": "../../packages/collect" },
  12. { "path": "../../packages/core" },
  13. { "path": "../../packages/tts" },
  14. { "path": "../../packages/templates" }
  15. ]
  16. }