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.

36 lines
983 B

5 days ago
{
"compilerOptions": {
"target": "ES5",
"jsx": "react-jsx",
"lib": ["ESNext"],
"moduleDetection": "force",
"experimentalDecorators": true,
"baseUrl": "",
"module": "CommonJS",
"paths": {
"@vant/weapp/*": ["node_modules/@vant/weapp/dist/*"],
"@/*": ["src/*"]
},
"typeRoots": ["./typings", "./node_modules"],
"types": ["miniprogram-api-typings"],
"allowJs": false,
"strict": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"inlineSourceMap": true,
"inlineSources": true,
"removeComments": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"pretty": true
},
"exclude": ["node_modules", "miniprogram_npm", "src/miniprogram_npm"]
}