tsconfig.json 579 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "baseUrl": "./",
  4. "target": "ESNext",
  5. "lib": ["DOM", "DOM.Iterable", "ESNext"],
  6. "types": ["vite/client"],
  7. "allowJs": false,
  8. "skipLibCheck": false,
  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. }