tsconfig.json 327 B

12345678910111213141516171819
  1. {
  2. "extends": "../../../../tsconfigbase",
  3. "compilerOptions": {
  4. "outDir": "build",
  5. "rootDir": "src",
  6. "module": "commonjs",
  7. "strictNullChecks": true,
  8. "types": ["node"]
  9. },
  10. "include": ["src/**/*"],
  11. "references": [
  12. {
  13. "path": "../../../coreutils"
  14. },
  15. {
  16. "path": "../.."
  17. }
  18. ]
  19. }