12345678910111213141516171819202122232425262728293031 |
- {
- "compilerOptions": {
- "target": "esnext",
- "useDefineForClassFields": true,
- "module": "esnext",
- "moduleResolution": "node",
- "strict": true,
- "jsx": "preserve",
- "sourceMap": true,
- "resolveJsonModule": true,
- "esModuleInterop": true,
- "lib": ["esnext", "dom"],
- "baseUrl": ".",
- "allowJs": true,
- "forceConsistentCasingInFileNames": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": false,
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "experimentalDecorators": true,
- "noImplicitAny": false,
- "skipLibCheck": true,
- "paths": {
- "@/*": ["src/*"],
- "_v/*": ["src/views/*"],
- "_c/*": ["src/components/*"]
- }
- },
- "types": ["element-plus/global", "vite/client"],
- "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "components.d.ts"]
- }
|