mirror of
https://gitee.com/log4j/pig-ui.git
synced 2024-12-23 05:40:20 +08:00
56 lines
1.0 KiB
JSON
56 lines
1.0 KiB
JSON
{
|
|
"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/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"@intlify/unplugin-vue-i18n/types",
|
|
"vite/client",
|
|
"element-plus/global",
|
|
"@types/intro.js",
|
|
"@types/qrcode",
|
|
"vite-plugin-svg-icons/client",
|
|
"unplugin-vue-define-options/macros-global"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types/",
|
|
"./types"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"types/**/*.d.ts",
|
|
"mock/**/*.ts",
|
|
"auto-imports.d.ts"
|
|
],
|
|
"exclude": [
|
|
"dist",
|
|
"node_modules"
|
|
]
|
|
}
|