| 1234567891011121314151617181920212223242526272829303132 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "jsx": "preserve",
- "lib": ["DOM", "ESNext"],
- "baseUrl": ".",
- "module": "ESNext",
- "moduleResolution": "node",
- "paths": {
- "@/*": ["src/*"]
- },
- "resolveJsonModule": true,
- "types": [
- "vite/client",
- "vite-plugin-vue-layouts/client",
- "unplugin-vue-router/client"
- ],
- "allowJs": true,
- "strict": true,
- "strictNullChecks": true,
- "noUnusedLocals": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "isolatedModules": true,
- "skipLibCheck": true
- },
- "include": [
- "./src/typed-router.d.ts"
- ],
- "exclude": ["dist", "node_modules", "cypress"],
- "references": [{ "path": "./tsconfig.node.json" }],
- }
|