tsconfig.json 514 B

1234567891011121314151617181920212223
  1. {
  2. "compilerOptions": {
  3. "module": "commonjs",
  4. "noLib": false,
  5. "skipLibCheck": true,
  6. "lib": [
  7. "es2017",
  8. "esnext.asynciterable",
  9. "dom"
  10. ],
  11. "moduleResolution": "Node",
  12. "allowSyntheticDefaultImports": true,
  13. "esModuleInterop": true,
  14. "emitDecoratorMetadata": true,
  15. "experimentalDecorators": true,
  16. "strict": true,
  17. "strictPropertyInitialization": false,
  18. "newLine": "LF",
  19. "resolveJsonModule": false,
  20. "target": "es5",
  21. "sourceMap": true
  22. }
  23. }