tsconfig.json 572 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "module": "esnext",
  5. "target": "es6",
  6. "noImplicitAny": false,
  7. "removeComments": false,
  8. "emitDeclarationOnly": false,
  9. "emitDecoratorMetadata": true,
  10. "experimentalDecorators": true,
  11. "sourceMap": true,
  12. "noImplicitReturns": true,
  13. "noFallthroughCasesInSwitch": true,
  14. "noUnusedLocals": true,
  15. "declaration": true,
  16. "skipLibCheck": true,
  17. "esModuleInterop": true,
  18. "allowSyntheticDefaultImports": true,
  19. "lib": [
  20. "dom",
  21. "es5",
  22. "es6",
  23. "es7"
  24. ]
  25. }
  26. }