1
0

tsconfig.json 486 B

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