123456789101112131415161718192021222324252627 |
- {
- "compilerOptions": {
- "baseUrl": ".",
- "module": "ESNext",
- "target": "es2016",
- "lib": ["DOM", "ESNext"],
- "strict": true,
- "esModuleInterop": true,
- "incremental": false,
- "skipLibCheck": true,
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "noUnusedLocals": true,
- "strictNullChecks": true,
- "forceConsistentCasingInFileNames": true,
- "types": [
- "cypress",
- "vite/client",
- "vite-plugin-pages/client",
- "vite-plugin-vue-layouts/client"
- ],
- "paths": {
- "~/*": ["src/*"]
- }
- },
- "exclude": ["dist", "node_modules"]
- }
|