42 lines
884 B
JSON
42 lines
884 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"composite": true,
|
||
|
"skipLibCheck": true,
|
||
|
"module": "ESNext",
|
||
|
"moduleResolution": "bundler",
|
||
|
"resolveJsonModule": true,
|
||
|
"noImplicitThis": true,
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"allowJs": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": ".",
|
||
|
"paths": {
|
||
|
"@/*": ["./*"]
|
||
|
},
|
||
|
"outDir": "dist",
|
||
|
"lib": ["esnext", "dom"],
|
||
|
"types": [
|
||
|
"@dcloudio/types",
|
||
|
"@types/wechat-miniprogram",
|
||
|
"@uni-helper/uni-app-types",
|
||
|
"@uni-helper/uni-ui-types",
|
||
|
"wot-design-uni/global.d.ts"
|
||
|
]
|
||
|
},
|
||
|
"vueCompilerOptions": {
|
||
|
"target": 3,
|
||
|
"nativeTags": ["block", "template", "component", "slot"]
|
||
|
},
|
||
|
"exclude": ["node_modules"],
|
||
|
"include": [
|
||
|
"./**/*.ts",
|
||
|
"./**/*.js",
|
||
|
"./**/*.d.ts",
|
||
|
"./**/*.tsx",
|
||
|
"./**/*.jsx",
|
||
|
"./**/*.vue",
|
||
|
"./**/*.json",
|
||
|
"main.js"
|
||
|
]
|
||
|
}
|