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.
30 lines
802 B
30 lines
802 B
{ |
|
"compilerOptions": { |
|
"target": "ES2020", |
|
"lib": ["ES2020"], |
|
"experimentalDecorators": true, |
|
"baseUrl": ".", |
|
"module": "CommonJS", |
|
"paths": { |
|
"@vant/weapp/*": ["path/to/node_modules/@vant/weapp/dist/*"], |
|
"@/*": ["src/*"] |
|
}, |
|
"typeRoots": ["./typings"], |
|
"types": ["miniprogram-api-typings"], |
|
"allowJs": true, |
|
"strict": true, |
|
"strictNullChecks": true, |
|
"strictPropertyInitialization": true, |
|
"alwaysStrict": true, |
|
"noFallthroughCasesInSwitch": true, |
|
"noImplicitAny": false, |
|
"noImplicitReturns": true, |
|
"noImplicitThis": true, |
|
"noUnusedLocals": true, |
|
"noUnusedParameters": true, |
|
"allowSyntheticDefaultImports": true, |
|
"esModuleInterop": true |
|
}, |
|
"include": ["./**/*.ts"], |
|
"exclude": ["node_modules"] |
|
}
|
|
|