tsconfig.json 538 B

12345678910111213141516171819202122232425
  1. {
  2. "compileOnSave": true,
  3. "compilerOptions": {
  4. "target": "ES2018",
  5. "module": "commonjs",
  6. "moduleResolution": "node",
  7. "experimentalDecorators": true,
  8. "emitDecoratorMetadata": true,
  9. "inlineSourceMap":false,
  10. "noImplicitThis": true,
  11. "esModuleInterop": true,
  12. "noUnusedLocals": true,
  13. "stripInternal": true,
  14. "skipLibCheck": false,
  15. "noImplicitReturns": false,
  16. "pretty": true,
  17. "declaration": true,
  18. "outDir": "dist"
  19. },
  20. "exclude": [
  21. "dist",
  22. "node_modules",
  23. "test"
  24. ]
  25. }