tsconfig.json 548 B

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