36 lines
867 B
JSON
36 lines
867 B
JSON
{
|
|
"compilerOptions": {
|
|
"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"],
|
|
"typeRoots": [
|
|
"./typings"
|
|
],
|
|
"baseUrl": ".",
|
|
"types": ["miniprogram-api-typings"],
|
|
"paths": {
|
|
"@vant/weapp/*": ["node_modules/@vant/weapp/dist/*"],
|
|
},
|
|
},
|
|
"include": [
|
|
"./**/*.ts"
|
|
, "miniprogram/api/login/index.js", "miniprogram/api/login/types.js" ],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
}
|