tsconfig.json 522 B

12345678910111213141516171819202122
  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. "target": "es5",
  12. "skipLibCheck": true,
  13. "typeRoots": [
  14. "node_modules/@types"
  15. ],
  16. "lib": [
  17. "es2017",
  18. "dom",
  19. "esnext.asynciterable"
  20. ]
  21. }
  22. }