tsconfig.json 623 B

123456789101112131415161718192021222324252627
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "importHelpers": true,
  6. "module": "esnext",
  7. "outDir": "./dist/out-tsc",
  8. "sourceMap": true,
  9. "declaration": false,
  10. "moduleResolution": "node",
  11. "emitDecoratorMetadata": true,
  12. "experimentalDecorators": true,
  13. "strict": true,
  14. "noImplicitAny": false,
  15. "strictPropertyInitialization": false,
  16. "target": "es2015",
  17. "skipLibCheck": true,
  18. "esModuleInterop": true,
  19. "allowSyntheticDefaultImports": true,
  20. "typeRoots": [],
  21. "lib": [
  22. "es2017",
  23. "dom",
  24. "esnext.asynciterable"
  25. ]
  26. }
  27. }