tsconfig.json 450 B

12345678910111213141516171819202122232425
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "module": "commonjs",
  5. "target": "ES2018",
  6. "moduleResolution": "node",
  7. "types": [
  8. "node"
  9. ],
  10. "outDir": "lib",
  11. "resolveJsonModule": true,
  12. "noResolve": true,
  13. "newLine": "lf",
  14. "experimentalDecorators": true,
  15. "emitDecoratorMetadata": true,
  16. "declaration": true
  17. },
  18. "include": [
  19. "src/**/*"
  20. ],
  21. "exclude": [
  22. "node_modules",
  23. "test"
  24. ]
  25. }