mirror of
https://gitee.com/wot-design-uni/wot-design-uni.git
synced 2025-12-06 09:08:51 +08:00
* refactor: ♻️ typescript支持增强 * refactor: ♻️ typescript支持增强 * refactor: ♻️ typescript支持增强 * refactor: ♻️ typescript支持增强 * refactor: ♻️ typescript支持增强 --------- Co-authored-by: xuqingkai <xuqingkai@hd123.com>
41 lines
776 B
JSON
41 lines
776 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"jsx": "preserve",
|
|
"resolveJsonModule":true,
|
|
"noImplicitAny": true,
|
|
"importHelpers": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators":true,
|
|
"sourceMap": false,
|
|
"skipLibCheck": true,
|
|
"verbatimModuleSyntax":true,
|
|
"baseUrl": ".",
|
|
"types": [
|
|
"@dcloudio/types",
|
|
"miniprogram-api-typings",
|
|
"mini-types"
|
|
],
|
|
"paths": {
|
|
"@/*": [
|
|
"./src/*"
|
|
]
|
|
},
|
|
"lib": [
|
|
"esnext",
|
|
"dom",
|
|
"dom.iterable",
|
|
"scripthost"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"unpackage",
|
|
"src/**/*.nvue"
|
|
],
|
|
}
|