-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
vscode & TypeScript & noImplicitReturns
fixed: Not all code paths return a value.(7030) ✅
tsconfig.json ✅
including the
srcfolder in thetsconfig.jsonfile
{
"include": [
- // "src/**/*",
+ "src/**/*",
"test/**/*"
],
}
.vscode/settings.json
不好使,[typescript] 不支持 noImplicitReturns 配置 ❌
{
"[typescript]": {
// "noImplicitReturns": false,
"noImplicitReturns": true,
},
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels


{ "include": [ // include folder ✅ "src/**/*", "test/**/*" ], }