1234567891011121314151617181920 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
- "jsx": "preserve",
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "experimentalDecorators": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": true,
- "baseUrl": "./",
- "types": ["vite/client"],
- "paths": {
- "@/*": ["src/*"]
- },
- "moduleResolution": "node"
- },
- "exclude": ["node_modules", "dist"]
- }
|