123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "baseUrl": "./",
- "target": "ESNext",
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
- "types": ["vite/client"],
- "allowJs": false,
- "skipLibCheck": true,
- "esModuleInterop": false,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
-
- "paths": {
- "~/*": [
- "src/*"
- ]
- },
- "jsx": "react"
- },
- "include": ["./src"]
- }
|