tsconfig.json 583 B

1234567891011121314151617181920212223242526
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "declaration": false,
  5. "emitDecoratorMetadata": true,
  6. "experimentalDecorators": true,
  7. "lib": [
  8. "es2017",
  9. "dom"
  10. ],
  11. "moduleResolution": "node",
  12. "noFallthroughCasesInSwitch": true,
  13. "noImplicitAny": false,
  14. "noImplicitReturns": false,
  15. "noImplicitThis": false,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "outDir": "./dist/out-tsc",
  19. "sourceMap": true,
  20. "strictNullChecks": false,
  21. "target": "es5",
  22. "typeRoots": [
  23. "node_modules/@types"
  24. ]
  25. }
  26. }