tsconfig.json 522 B

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