unibest/tsconfig.json

42 lines
910 B
JSON
Raw Normal View History

2023-12-21 15:26:15 +08:00
{
"compilerOptions": {
"composite": true,
"lib": ["esnext", "dom"],
"baseUrl": ".",
"module": "ESNext",
2024-04-07 08:39:01 +08:00
"moduleResolution": "Node",
2023-12-21 15:26:15 +08:00
"paths": {
"@/*": ["./src/*"],
"@img/*": ["./src/static/*"]
2023-12-21 15:26:15 +08:00
},
"resolveJsonModule": true,
2024-09-09 14:34:02 +08:00
"types": [
"@dcloudio/types",
"@uni-helper/uni-types",
"@types/wechat-miniprogram",
"wot-design-uni/global.d.ts",
"z-paging/types",
"./src/typings.d.ts"
],
"allowJs": true,
"noImplicitThis": true,
"sourceMap": true,
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"outDir": "dist"
},
"vueCompilerOptions": {
2024-09-09 14:34:02 +08:00
"plugins": ["@uni-helper/uni-types/volar-plugin"]
2023-12-21 15:26:15 +08:00
},
2024-04-21 15:34:13 +08:00
"include": [
"src/**/*.ts",
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.jsx",
"src/**/*.vue",
"src/**/*.json"
],
"exclude": ["node_modules"]
2023-12-21 15:26:15 +08:00
}