tsconfig.json 728 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "allowImportingTsExtensions": true,
  7. "resolveJsonModule": true,
  8. "allowJs": true,
  9. "strict": true,
  10. "noEmit": true,
  11. "esModuleInterop": true,
  12. "allowSyntheticDefaultImports": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "skipLibCheck": true,
  15. "experimentalDecorators": true,
  16. "emitDecoratorMetadata": true,
  17. "composite": true,
  18. "declaration": true,
  19. "declarationMap": true,
  20. "sourceMap": true,
  21. "baseUrl": ".",
  22. "paths": {
  23. "~/*": ["./src/*"]
  24. }
  25. },
  26. "include": [
  27. "src/**/*",
  28. "tests/**/*"
  29. ],
  30. "exclude": [
  31. "node_modules",
  32. "dist"
  33. ]
  34. }