vscode: fix local devel

The value of releaseTag is not undefined, but null in actual package.json
This commit is contained in:
veetaha 2020-03-25 20:56:48 +02:00
parent 3d38d4dc94
commit 68ff71e3ab
2 changed files with 7 additions and 5 deletions

View file

@ -21,7 +21,7 @@ export class Config {
readonly package: {
version: string;
releaseTag: string | undefined;
releaseTag: string | null;
enableProposedApi: boolean | undefined;
} = vscode.extensions.getExtension(this.extensionId)!.packageJSON;