34 lines
903 B
JSON
34 lines
903 B
JSON
{
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"noImplicitAny": true,
|
|
"module": "CommonJS",
|
|
"target": "ES2020",
|
|
"allowJs": true,
|
|
"isolatedModules": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitReturns": true,
|
|
"alwaysStrict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"strict": true,
|
|
"strictPropertyInitialization": true,
|
|
"ignoreDeprecations": "6.0",
|
|
"baseUrl": ".",
|
|
"types": ["miniprogram-api-typings"],
|
|
"paths": {
|
|
"@vant/weapp/*": ["path/to/node_modules/@vant/weapp/dist/*"]
|
|
},
|
|
"lib": ["ES2020"],
|
|
"typeRoots": ["./typings"],
|
|
"rootDir": "./miniprogram",
|
|
"outDir": "./dist"
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|