Files
weRequest/tsconfig.json
Bing Liu e4ec9bc613 feat(types): 更新使用独立的微信小程序 types (#62)
* feat(types): 更新使用独立的微信小程序 types

* build: add package-lock.json

* feat: 由于当前仅修改依赖,不更新版本号
2023-03-16 20:25:14 +08:00

30 lines
796 B
JSON

{
"compilerOptions": {
"outDir": "./build/",
"strictNullChecks": true,
"noImplicitAny": true,
"module": "CommonJS",
"moduleResolution": "node",
"target": "ES5",
"allowJs": false,
"experimentalDecorators": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"alwaysStrict": true,
"inlineSourceMap": true,
"inlineSources": true,
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
"removeComments": true,
"pretty": true,
"strictPropertyInitialization": true,
"types": ["miniprogram-api-typings"],
"lib": ["es5", "es6"],
"declaration": true
},
"include": ["./src/**/*.ts"],
"exclude": ["node_modules", "build", "**/*.spec.ts", "**/*.d.ts"]
}