58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"lib": [
|
|
"esnext",
|
|
"dom"
|
|
],
|
|
"baseUrl": ".",
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
],
|
|
"@img/*": [
|
|
"./src/static/*"
|
|
]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"types": [
|
|
"@dcloudio/types",
|
|
"@uni-helper/uni-types",
|
|
"@uni-helper/vite-plugin-uni-pages",
|
|
"miniprogram-api-typings",
|
|
"z-paging/types",
|
|
"./src/types/async-component.d.ts",
|
|
"./src/types/async-import.d.ts",
|
|
"./src/typings.d.ts",
|
|
"wot-design-uni/global.d.ts"
|
|
],
|
|
"allowJs": true,
|
|
"noImplicitThis": true,
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"vueCompilerOptions": {
|
|
"plugins": [
|
|
"@uni-helper/uni-types/volar-plugin"
|
|
]
|
|
},
|
|
"include": [
|
|
"package.json",
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
"src/**/*.d.ts",
|
|
"src/**/*.tsx",
|
|
"src/**/*.jsx",
|
|
"src/**/*.vue",
|
|
"src/**/*.json"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|