tsconfig.json 583 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "target": "ESNext",
  5. "lib": ["DOM", "DOM.Iterable", "ESNext"],
  6. "types": ["vite/client"],
  7. "allowJs": false,
  8. "skipLibCheck": true,
  9. "esModuleInterop": false,
  10. "allowSyntheticDefaultImports": true,
  11. "strict": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "module": "ESNext",
  14. "moduleResolution": "Node",
  15. "resolveJsonModule": true,
  16. "isolatedModules": true,
  17. "noEmit": true,
  18. "paths": {
  19. "~/*": [
  20. "src/*"
  21. ]
  22. },
  23. "jsx": "react"
  24. },
  25. "include": ["./src"]
  26. }