tsconfig.json 241 B

12345678910111213
  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": "../shared" },
  11. { "path": "../collect" }
  12. ]
  13. }