123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": ["DOM", "DOM.Iterable", "ESNext"],
- "allowJs": false,
- "skipLibCheck": false,
- "esModuleInterop": false,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "noEmit": true,
- "jsx": "react",
- "paths": {
- "@/*": ["./src/*"],
- "@/components/*": ["./src/components/*"]
- }
- },
- "include": ["./src"],
- "exclude": ["node_modules"]
- }
|