tsconfig.test.json 322 B

123456789101112131415
  1. {
  2. "extends": "../../tsconfig.base.json",
  3. "compilerOptions": {
  4. "outDir": "dist",
  5. "rootDir": ".",
  6. "types": ["node"],
  7. "allowImportingTsExtensions": true,
  8. "noEmit": true
  9. },
  10. "include": ["test", "src/postprocess.ts"],
  11. "references": [
  12. { "path": "../shared" },
  13. { "path": "../collect" }
  14. ]
  15. }