mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-24 20:26:08 +00:00
@@ -535,9 +535,8 @@
|
||||
"scope": "window"
|
||||
},
|
||||
"js/ts.implicitProjectConfig.strictNullChecks": {
|
||||
"title": "",
|
||||
"type": "boolean",
|
||||
"default": true,
|
||||
"default": false,
|
||||
"markdownDescription": "%configuration.implicitProjectConfig.strictNullChecks%",
|
||||
"scope": "window"
|
||||
},
|
||||
|
||||
@@ -79,7 +79,7 @@ export class ImplicitProjectConfiguration {
|
||||
}
|
||||
|
||||
private static readImplicitStrictNullChecks(configuration: vscode.WorkspaceConfiguration): boolean {
|
||||
return configuration.get<boolean>('js/ts.implicitProjectConfig.strictNullChecks', true);
|
||||
return configuration.get<boolean>('js/ts.implicitProjectConfig.strictNullChecks', false);
|
||||
}
|
||||
|
||||
private static readImplicitStrictFunctionTypes(configuration: vscode.WorkspaceConfiguration): boolean {
|
||||
|
||||
Reference in New Issue
Block a user