tsconfig.json 566 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "Bundler",
  6. "incremental": true,
  7. "strict": true,
  8. "skipLibCheck": true,
  9. "lib": [
  10. "DOM",
  11. "DOM.Iterable",
  12. "ESNext"
  13. ],
  14. "types": [
  15. "vite/client"
  16. ],
  17. "jsx": "react-jsx",
  18. "jsxImportSource": "react",
  19. "experimentalDecorators": true,
  20. "emitDecoratorMetadata": true,
  21. "baseUrl": ".",
  22. "paths": {
  23. "@/*": ["src/*"]
  24. },
  25. },
  26. "include": ["src/**/*.ts", "src/**/*.tsx"],
  27. "exclude": ["node_modules"]
  28. }