1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "moduleResolution": "bundler",
- "strict": false,
- "jsx": "preserve",
- "importHelpers": true,
- "experimentalDecorators": true,
- "strictFunctionTypes": false,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "isolatedModules": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "sourceMap": true,
- "baseUrl": ".",
- "allowJs": false,
- "resolveJsonModule": true,
- "lib": [
- "ESNext",
- "DOM"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ],
- "@build/*": [
- "build/*"
- ]
- },
- "types": [
- "node",
- "vite/client",
- "element-plus/global",
- "@pureadmin/table/volar",
- "@pureadmin/descriptions/volar"
- ]
- },
- "include": [
- "mock/*.ts",
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "types/*.d.ts",
- "vite.config.ts"
- ],
- "exclude": [
- "dist",
- "**/*.js",
- "node_modules"
- ]
- }
|