hx/tsconfig.json

42 lines
884 B
JSON
Raw Normal View History

2024-10-18 18:09:15 +08:00
{
"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"
]
}