tsconfig.json 557 B

1234567891011121314151617181920212223
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "src",
  5. "outDir": "./dist",
  6. "sourceMap": true,
  7. "declaration": true,
  8. "module": "commonjs",
  9. "moduleResolution": "node",
  10. "emitDecoratorMetadata": true,
  11. "experimentalDecorators": true,
  12. "allowSyntheticDefaultImports": true,
  13. "esModuleInterop": true,
  14. "target": "es5",
  15. "typeRoots": [
  16. "node_modules/@types"
  17. ],
  18. "lib": [
  19. "es2017",
  20. "dom"
  21. ]
  22. }
  23. }