tsconfig.json 626 B

123456789101112131415161718192021222324252627
  1. {
  2. "compileOnSave": false,
  3. "compilerOptions": {
  4. "baseUrl": "./",
  5. "importHelpers": true,
  6. "module": "es2020",
  7. "outDir": "./dist/out-tsc",
  8. "sourceMap": true,
  9. "declaration": false,
  10. "moduleResolution": "node",
  11. "experimentalDecorators": true,
  12. "strict": true,
  13. "noImplicitAny": false,
  14. "strictPropertyInitialization": false,
  15. "target": "ES2022",
  16. "skipLibCheck": true,
  17. "esModuleInterop": true,
  18. "allowSyntheticDefaultImports": true,
  19. "typeRoots": [],
  20. "lib": [
  21. "es2019",
  22. "dom",
  23. "esnext.asynciterable"
  24. ],
  25. "useDefineForClassFields": false
  26. }
  27. }