tsconfig.json 592 B

12345678910111213141516171819202122232425262728
  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. "declaration": true,
  17. "outDir": "./dist",
  18. "rootDir": "./src",
  19. "composite": true
  20. },
  21. "include": [
  22. "src/**/*"
  23. ],
  24. "exclude": [
  25. "node_modules",
  26. "dist"
  27. ]
  28. }