1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "jsx": "preserve",
- "jsxImportSource": "vue",
- "lib": ["DOM", "ESNext"],
- "baseUrl": ".",
- "module": "ESNext",
- "moduleResolution": "node",
- "paths": {
- "@/*": ["./src/*"],
- "~/*": ["./*"]
- },
- "resolveJsonModule": true,
- "types": ["vite/client", "node", "unplugin-icons/types/vue", "ant-design-vue/typings/global.d.ts"],
- "strict": true,
- "strictNullChecks": true,
- "noUnusedLocals": true,
- "allowSyntheticDefaultImports": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "isolatedModules": true
- },
- "include": ["./**/*.ts", "./**/*.tsx", "./**/*.vue"],
- "exclude": ["node_modules", "dist"]
- }
|