41 lines
815 B
JSON
41 lines
815 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"
|
|
],
|
|
"types": [
|
|
"miniprogram-api-typings"
|
|
]
|
|
},
|
|
"include": [
|
|
"./**/*.ts",
|
|
"miniprogram/pages/main/journal/components/journal-list/index.js"
|
|
],
|
|
"paths": {
|
|
"@vant/weapp/*": [
|
|
"miniprogram/node_modules/@vant/weapp/dist/*"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |