tsconfig.json 557 B

12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "lib": ["ES2022"],
  5. "module": "ESNext",
  6. "moduleResolution": "bundler",
  7. "allowImportingTsExtensions": true,
  8. "resolveJsonModule": true,
  9. "allowJs": true,
  10. "strict": true,
  11. "noEmit": true,
  12. "esModuleInterop": true,
  13. "allowSyntheticDefaultImports": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "skipLibCheck": true,
  16. "experimentalDecorators": true,
  17. "emitDecoratorMetadata": true,
  18. "declaration": true,
  19. "declarationMap": true,
  20. "sourceMap": true
  21. }
  22. }