tsconfig.json 421 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "emitDecoratorMetadata": true,
  4. "experimentalDecorators": true,
  5. "lib": [
  6. "es2017",
  7. "dom"
  8. ],
  9. "target": "es2017",
  10. "module": "commonjs",
  11. "esModuleInterop": true,
  12. "noImplicitThis": false,
  13. "noUnusedLocals": true,
  14. "removeComments": true,
  15. "strict": true
  16. },
  17. "exclude": [
  18. "node_modules"
  19. ],
  20. "compileOnSave": false,
  21. "buildOnSave": false
  22. }