unibest/tsconfig.json

35 lines
791 B
JSON
Raw Normal View History

2023-12-21 15:26:15 +08:00
{
"compilerOptions": {
"composite": true,
"skipLibCheck": true,
"module": "ESNext",
2024-04-07 08:39:01 +08:00
"moduleResolution": "Node",
2024-04-17 15:32:15 +08:00
"resolveJsonModule": true,
"noImplicitThis": true,
"allowSyntheticDefaultImports": true,
2024-04-17 15:32:15 +08:00
"allowJs": true,
2023-12-21 15:26:15 +08:00
"sourceMap": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
2024-02-01 19:05:11 +08:00
"outDir": "dist",
2023-12-21 15:26:15 +08:00
"lib": ["esnext", "dom"],
2024-04-17 15:32:15 +08:00
"types": ["@dcloudio/types", "@types/wechat-miniprogram", "wot-design-uni/global.d.ts"]
},
"vueCompilerOptions": {
"target": 3,
"nativeTags": ["block", "template", "component", "slot"]
2023-12-21 15:26:15 +08:00
},
"exclude": ["node_modules"],
2024-04-21 15:34:13 +08:00
"include": [
"src/**/*.ts",
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.jsx",
"src/**/*.vue",
"src/**/*.json"
]
2023-12-21 15:26:15 +08:00
}