1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "baseUrl": ".",
- "module": "ESNext",
- "target": "ESNext",
- "lib": ["DOM", "ESNext"],
- "strict": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "jsx": "preserve",
- "moduleResolution": "node",
- "resolveJsonModule": true,
- "noUnusedLocals": true,
- "strictNullChecks": true,
- "forceConsistentCasingInFileNames": true,
- "paths": {
- "~/*": ["./*"],
- "@/*": ["./src/*"]
- },
- "types": ["vite/client", "node", "unplugin-icons/types/vue", "naive-ui/volar", "unplugin-vue-macros/macros-global"]
- },
- "exclude": ["node_modules", "dist"]
- }
|