You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
886 B
44 lines
886 B
{ |
|
"compilerOptions": { |
|
"baseUrl": ".", |
|
"strictNullChecks": true, |
|
"noImplicitAny": true, |
|
"module": "CommonJS", |
|
"target": "ES2020", |
|
"allowJs": true, |
|
"allowSyntheticDefaultImports": true, |
|
"esModuleInterop": true, |
|
"experimentalDecorators": true, |
|
"noImplicitThis": true, |
|
"noImplicitReturns": true, |
|
"alwaysStrict": true, |
|
"noFallthroughCasesInSwitch": true, |
|
"noUnusedLocals": true, |
|
"noUnusedParameters": true, |
|
"strict": true, |
|
"strictPropertyInitialization": true, |
|
"lib": [ |
|
"ES2020" |
|
], |
|
"types": [ |
|
"miniprogram-api-typings" |
|
], |
|
"typeRoots": [ |
|
"./typings" |
|
], |
|
"paths": { |
|
"@vant/weapp/*": [ |
|
"path/to/node_modules/@vant/weapp/dist/*" |
|
], |
|
"@/*": [ |
|
"src/*" |
|
] |
|
}, |
|
}, |
|
"include": [ |
|
"./**/*.ts" |
|
], |
|
"exclude": [ |
|
"node_modules" |
|
] |
|
}
|
|
|