tsconfig.web.json 456 B

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