提交 96990ee2 编写于 作者: M Matt Bierner

Strict null check platform/configuration/node

上级 7ef13063
...@@ -403,6 +403,7 @@ ...@@ -403,6 +403,7 @@
"./vs/platform/configuration/common/configuration.ts", "./vs/platform/configuration/common/configuration.ts",
"./vs/platform/configuration/common/configurationModels.ts", "./vs/platform/configuration/common/configurationModels.ts",
"./vs/platform/configuration/common/configurationRegistry.ts", "./vs/platform/configuration/common/configurationRegistry.ts",
"./vs/platform/configuration/node/configuration.ts",
"./vs/platform/configuration/test/common/testConfigurationService.ts", "./vs/platform/configuration/test/common/testConfigurationService.ts",
"./vs/platform/contextkey/browser/contextKeyService.ts", "./vs/platform/contextkey/browser/contextKeyService.ts",
"./vs/platform/contextkey/common/contextkey.ts", "./vs/platform/contextkey/common/contextkey.ts",
......
...@@ -30,7 +30,7 @@ export class UserConfiguration extends Disposable { ...@@ -30,7 +30,7 @@ export class UserConfiguration extends Disposable {
userConfigModelParser.parse(content); userConfigModelParser.parse(content);
parseErrors = [...userConfigModelParser.errors]; parseErrors = [...userConfigModelParser.errors];
return userConfigModelParser; return userConfigModelParser;
}, initCallback: () => c(null) }, initCallback: () => c(void 0)
}); });
this._register(this.userConfigModelWatcher); this._register(this.userConfigModelWatcher);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册