武田小程序
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.

31 lines
801 B

4 months ago
{
"compilerOptions": {
4 months ago
"target": "ES2020",
"lib": ["ES2020"],
"experimentalDecorators": true,
4 months ago
"baseUrl": ".",
"module": "CommonJS",
4 months ago
"paths": {
"@vant/weapp/*": ["path/to/node_modules/@vant/weapp/dist/*"],
"@/*": ["src/*"]
},
"typeRoots": ["./typings"],
"types": ["miniprogram-api-typings"],
4 months ago
"allowJs": true,
4 months ago
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
4 months ago
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
4 months ago
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
4 months ago
"noUnusedLocals": true,
"noUnusedParameters": true,
4 months ago
"allowSyntheticDefaultImports": true,
"esModuleInterop": true
4 months ago
},
4 months ago
"include": ["./**/*.ts"],
"exclude": ["node_modules"]
4 months ago
}