mirror of
https://github.com/kailong321200875/vue-element-plus-admin.git
synced 2024-11-21 00:51:22 +08:00
38 lines
964 B
JSON
38 lines
964 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"useDefineForClassFields": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"jsxImportSource": "vue",
|
|
"lib": ["esnext", "dom"],
|
|
"baseUrl": "./",
|
|
"allowJs": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strictFunctionTypes": false,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitAny": false,
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": [
|
|
"@intlify/unplugin-vue-i18n/types",
|
|
"vite/client",
|
|
"element-plus/global",
|
|
"@types/qrcode",
|
|
"vite-plugin-svg-icons/client"
|
|
]
|
|
},
|
|
"include": ["src", "types/**/*.d.ts", "mock/**/*.ts"]
|
|
// "exclude": ["dist", "node_modules"]
|
|
}
|