tsconfig.json 604 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "ts-node": {
  3. "files": true
  4. },
  5. "compilerOptions": {
  6. "emitDecoratorMetadata": true,
  7. "exactOptionalPropertyTypes": false,
  8. "experimentalDecorators": true,
  9. "lib": [
  10. "es2019",
  11. "dom"
  12. ],
  13. "target": "es2018",
  14. "module": "commonjs",
  15. "resolveJsonModule": true,
  16. "esModuleInterop": true,
  17. "noImplicitOverride": true,
  18. "noImplicitThis": false,
  19. "noUnusedLocals": true,
  20. "removeComments": true,
  21. "strict": true,
  22. "useUnknownInCatchVariables": false
  23. },
  24. "exclude": [
  25. "node_modules"
  26. ],
  27. "compileOnSave": false,
  28. "buildOnSave": false
  29. }