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