2020-12-14 17:32:37 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
2021-10-10 09:59:52 +08:00
|
|
|
"useDefineForClassFields": true,
|
2020-12-14 17:32:37 +08:00
|
|
|
"module": "esnext",
|
2021-10-10 09:59:52 +08:00
|
|
|
"moduleResolution": "node",
|
2020-12-14 17:32:37 +08:00
|
|
|
"strict": true,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"sourceMap": true,
|
2021-10-10 09:59:52 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
2024-01-03 14:00:33 +08:00
|
|
|
"jsxImportSource": "vue",
|
2021-12-07 16:36:16 +08:00
|
|
|
"lib": ["esnext", "dom"],
|
2023-04-17 09:23:03 +08:00
|
|
|
"baseUrl": "./",
|
2021-12-07 16:36:16 +08:00
|
|
|
"allowJs": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["src/*"]
|
2021-12-08 10:47:33 +08:00
|
|
|
},
|
2022-01-25 17:43:53 +08:00
|
|
|
"types": [
|
2022-12-20 09:42:35 +08:00
|
|
|
"@intlify/unplugin-vue-i18n/types",
|
2022-01-25 17:43:53 +08:00
|
|
|
"vite/client",
|
|
|
|
"element-plus/global",
|
2022-01-30 11:09:53 +08:00
|
|
|
"@types/qrcode",
|
2023-08-16 10:24:31 +08:00
|
|
|
"vite-plugin-svg-icons/client"
|
2023-04-17 09:23:03 +08:00
|
|
|
]
|
2020-12-14 17:32:37 +08:00
|
|
|
},
|
2023-04-17 09:23:03 +08:00
|
|
|
"include": ["src", "types/**/*.d.ts", "mock/**/*.ts"]
|
|
|
|
// "exclude": ["dist", "node_modules"]
|
2020-12-14 17:32:37 +08:00
|
|
|
}
|