2
0

tsconfig.json 743 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "compilerOptions": {
  3. "composite": true,
  4. "target": "ES2022",
  5. "module": "ESNext",
  6. "moduleResolution": "bundler",
  7. "allowSyntheticDefaultImports": true,
  8. "esModuleInterop": true,
  9. "resolveJsonModule": true,
  10. "isolatedModules": true,
  11. "noEmit": false,
  12. "jsx": "react-jsx",
  13. "strict": true,
  14. "noUncheckedIndexedAccess": true,
  15. "noImplicitOverride": true,
  16. "outDir": "./dist",
  17. "rootDir": ".",
  18. "declaration": true,
  19. "skipLibCheck": true,
  20. "experimentalDecorators": true,
  21. "emitDecoratorMetadata": true,
  22. "baseUrl": ".",
  23. "paths": {
  24. "@/*": ["./src/*"]
  25. }
  26. },
  27. "include": [
  28. "src/**/*",
  29. "tests/**/*"
  30. ],
  31. "exclude": [
  32. "node_modules",
  33. "dist"
  34. ]
  35. }