tsconfig.json 454 B

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