From 2c377b78284fb81263120c4834de8a70d4d58d10 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Fri, 29 May 2020 14:11:10 -0700 Subject: [PATCH] Update extensions to build with typescript 3.9.4 Also fixing some compile errors in configuration-sample --- .base-sample/package.json | 2 +- basic-multi-root-sample/package-lock.json | 6 +++--- basic-multi-root-sample/package.json | 2 +- call-hierarchy-sample/package-lock.json | 6 +++--- call-hierarchy-sample/package.json | 2 +- code-actions-sample/package-lock.json | 6 +++--- code-actions-sample/package.json | 2 +- comment-sample/package-lock.json | 6 +++--- comment-sample/package.json | 2 +- completions-sample/package-lock.json | 6 +++--- completions-sample/package.json | 2 +- configuration-sample/.eslintrc.js | 1 + configuration-sample/package-lock.json | 12 ++++++------ configuration-sample/package.json | 4 ++-- configuration-sample/src/extension.ts | 14 +++++++------- contentprovider-sample/package-lock.json | 6 +++--- contentprovider-sample/package.json | 2 +- custom-editor-sample/package-lock.json | 6 +++--- custom-editor-sample/package.json | 2 +- decorator-sample/package-lock.json | 6 +++--- decorator-sample/package.json | 2 +- .../package-lock.json | 6 +++--- diagnostic-related-information-sample/package.json | 2 +- document-editing-sample/package-lock.json | 6 +++--- document-editing-sample/package.json | 2 +- extension-terminal-sample/package-lock.json | 6 +++--- extension-terminal-sample/package.json | 2 +- fsconsumer-sample/package-lock.json | 6 +++--- fsconsumer-sample/package.json | 2 +- fsprovider-sample/package-lock.json | 6 +++--- fsprovider-sample/package.json | 2 +- helloworld-sample/package.json | 2 +- helloworld-test-sample/package.json | 2 +- i18n-sample/package-lock.json | 6 +++--- i18n-sample/package.json | 2 +- lsp-embedded-language-service/package.json | 2 +- lsp-embedded-request-forwarding/package.json | 2 +- lsp-log-streaming-sample/package-lock.json | 6 +++--- lsp-log-streaming-sample/package.json | 2 +- lsp-multi-server-sample/package-lock.json | 6 +++--- lsp-multi-server-sample/package.json | 2 +- lsp-sample/package-lock.json | 6 +++--- lsp-sample/package.json | 2 +- lsp-user-input-sample/package.json | 2 +- nodefs-provider-sample/package-lock.json | 6 +++--- nodefs-provider-sample/package.json | 2 +- progress-sample/package-lock.json | 6 +++--- progress-sample/package.json | 2 +- proposed-api-sample/package.json | 2 +- quickinput-sample/package-lock.json | 6 +++--- quickinput-sample/package.json | 2 +- semantic-tokens-sample/package-lock.json | 6 +++--- semantic-tokens-sample/package.json | 2 +- source-control-sample/package-lock.json | 6 +++--- source-control-sample/package.json | 2 +- statusbar-sample/package-lock.json | 6 +++--- statusbar-sample/package.json | 2 +- task-provider-sample/package-lock.json | 6 +++--- task-provider-sample/package.json | 2 +- terminal-sample/package-lock.json | 6 +++--- terminal-sample/package.json | 2 +- tree-view-sample/package-lock.json | 6 +++--- tree-view-sample/package.json | 2 +- vim-sample/package-lock.json | 6 +++--- vim-sample/package.json | 2 +- virtual-document-sample/package.json | 2 +- webpack-sample/package-lock.json | 6 +++--- webpack-sample/package.json | 2 +- webview-sample/package-lock.json | 6 +++--- webview-sample/package.json | 2 +- 70 files changed, 140 insertions(+), 139 deletions(-) diff --git a/.base-sample/package.json b/.base-sample/package.json index a2d503c5..96e15920 100644 --- a/.base-sample/package.json +++ b/.base-sample/package.json @@ -34,6 +34,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } \ No newline at end of file diff --git a/basic-multi-root-sample/package-lock.json b/basic-multi-root-sample/package-lock.json index 50b8005d..30b73674 100644 --- a/basic-multi-root-sample/package-lock.json +++ b/basic-multi-root-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/basic-multi-root-sample/package.json b/basic-multi-root-sample/package.json index 8ef90260..336c2f03 100644 --- a/basic-multi-root-sample/package.json +++ b/basic-multi-root-sample/package.json @@ -41,7 +41,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/call-hierarchy-sample/package-lock.json b/call-hierarchy-sample/package-lock.json index 120ab97e..42435f17 100644 --- a/call-hierarchy-sample/package-lock.json +++ b/call-hierarchy-sample/package-lock.json @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/call-hierarchy-sample/package.json b/call-hierarchy-sample/package.json index 52053760..b7c361bd 100644 --- a/call-hierarchy-sample/package.json +++ b/call-hierarchy-sample/package.json @@ -27,6 +27,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/code-actions-sample/package-lock.json b/code-actions-sample/package-lock.json index 3309b4fc..833f0a9c 100644 --- a/code-actions-sample/package-lock.json +++ b/code-actions-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/code-actions-sample/package.json b/code-actions-sample/package.json index efd52da8..086f3e7d 100644 --- a/code-actions-sample/package.json +++ b/code-actions-sample/package.json @@ -32,7 +32,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/comment-sample/package-lock.json b/comment-sample/package-lock.json index 3d8726dd..720bb6c3 100644 --- a/comment-sample/package-lock.json +++ b/comment-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/comment-sample/package.json b/comment-sample/package.json index 70e3e228..fedcc172 100644 --- a/comment-sample/package.json +++ b/comment-sample/package.json @@ -158,7 +158,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.35.0" } } diff --git a/completions-sample/package-lock.json b/completions-sample/package-lock.json index 35fe0c3a..ee338f9b 100644 --- a/completions-sample/package-lock.json +++ b/completions-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/completions-sample/package.json b/completions-sample/package.json index 731ee54f..2b81375a 100644 --- a/completions-sample/package.json +++ b/completions-sample/package.json @@ -31,7 +31,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/configuration-sample/.eslintrc.js b/configuration-sample/.eslintrc.js index 9386c4e1..27678b32 100644 --- a/configuration-sample/.eslintrc.js +++ b/configuration-sample/.eslintrc.js @@ -15,5 +15,6 @@ module.exports = { '@typescript-eslint/no-explicit-any': 0, '@typescript-eslint/explicit-module-boundary-types': 0, '@typescript-eslint/no-non-null-assertion': 0, + '@typescript-eslint/ban-types': 0, } }; \ No newline at end of file diff --git a/configuration-sample/package-lock.json b/configuration-sample/package-lock.json index d426aa1c..ef5fe5c6 100644 --- a/configuration-sample/package-lock.json +++ b/configuration-sample/package-lock.json @@ -49,9 +49,9 @@ "dev": true }, "@types/vscode": { - "version": "1.33.0", - "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.33.0.tgz", - "integrity": "sha512-JSmGiValbrcG5g20jjCfKakLiuWyrcjVezj+SEAEZ4klXQktE5EtowuGlkLVqbkiBK4iY5wy/4yW8OjecuHnjQ==", + "version": "1.45.1", + "resolved": "https://registry.npmjs.org/@types/vscode/-/vscode-1.45.1.tgz", + "integrity": "sha512-0NO9qrrEJBO8FsqHCrFMgR2suKnwCsKBWvRSb2OzH5gs4i3QO5AhEMQYrSzDbU/wLPt7N617/rN9lPY213gmwg==", "dev": true }, "@typescript-eslint/eslint-plugin": { @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/configuration-sample/package.json b/configuration-sample/package.json index d5b29e9f..780ae417 100644 --- a/configuration-sample/package.json +++ b/configuration-sample/package.json @@ -86,7 +86,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", - "@types/vscode": "^1.32.0" + "typescript": "^3.9.4", + "@types/vscode": "^1.40.0" } } diff --git a/configuration-sample/src/extension.ts b/configuration-sample/src/extension.ts index 9afe4abb..7322986c 100644 --- a/configuration-sample/src/extension.ts +++ b/configuration-sample/src/extension.ts @@ -121,10 +121,10 @@ export function activate(context: vscode.ExtensionContext) { if (workspaceFolder) { // 4) Get the configuration for the workspace folder - const configuration = vscode.workspace.getConfiguration('', workspaceFolder); + const configuration = vscode.workspace.getConfiguration('', workspaceFolder.uri); // 5) Get the current value - const currentValue = configuration.get('conf.resource.insertEmptyLastLine'); + const currentValue = configuration.get<{}>('conf.resource.insertEmptyLastLine'); const newValue = { ...currentValue, ...{ [value]: true } }; @@ -137,7 +137,7 @@ export function activate(context: vscode.ExtensionContext) { const configuration = vscode.workspace.getConfiguration(); // 4) Get the current value - const currentValue = configuration.get('conf.resource.insertEmptyLastLine'); + const currentValue = configuration.get<{}>('conf.resource.insertEmptyLastLine'); const newValue = { ...currentValue, ...(value ? { [value]: true } : {}) }; @@ -151,7 +151,7 @@ export function activate(context: vscode.ExtensionContext) { const configuration = vscode.workspace.getConfiguration(); // 3) Get the current value - const currentValue = configuration.get('conf.resource.insertEmptyLastLine'); + const currentValue = configuration.get<{}>('conf.resource.insertEmptyLastLine'); const newValue = { ...currentValue, ...(value ? { [value]: true } : {}) }; @@ -167,7 +167,7 @@ export function activate(context: vscode.ExtensionContext) { if (statusSizeDisposable) { statusSizeDisposable.dispose(); } - + // 1) Check if showing size is configured for current file const showSize: any = vscode.workspace.getConfiguration('', e).get('conf.language.showSize'); @@ -185,7 +185,7 @@ export function activate(context: vscode.ExtensionContext) { const languageId = await vscode.window.showInputBox({ placeHolder: 'Enter the language id' }); // 2) Update - vscode.workspace.getConfiguration('', { languageId }).update('conf.language.showSize', true, false, true); + vscode.workspace.getConfiguration('', { languageId: languageId! }).update('conf.language.showSize', true, false, true); })); @@ -211,7 +211,7 @@ export function activate(context: vscode.ExtensionContext) { } // Check if a language configuration is changed for a text document - if (e.affectsConfiguration('conf.language.showSize', vscode.window.activeTextEditor)) { + if (e.affectsConfiguration('conf.language.showSize', vscode.window.activeTextEditor?.document)) { // noop } diff --git a/contentprovider-sample/package-lock.json b/contentprovider-sample/package-lock.json index a4ed23b2..169fb011 100644 --- a/contentprovider-sample/package-lock.json +++ b/contentprovider-sample/package-lock.json @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/contentprovider-sample/package.json b/contentprovider-sample/package.json index 3417e257..fb5c858c 100644 --- a/contentprovider-sample/package.json +++ b/contentprovider-sample/package.json @@ -67,7 +67,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.39.0" } } diff --git a/custom-editor-sample/package-lock.json b/custom-editor-sample/package-lock.json index 637f70f4..ae9ddf12 100644 --- a/custom-editor-sample/package-lock.json +++ b/custom-editor-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/custom-editor-sample/package.json b/custom-editor-sample/package.json index 1da08f22..1e7cb47a 100644 --- a/custom-editor-sample/package.json +++ b/custom-editor-sample/package.json @@ -54,6 +54,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/decorator-sample/package-lock.json b/decorator-sample/package-lock.json index 3d1f983f..4259a165 100644 --- a/decorator-sample/package-lock.json +++ b/decorator-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/decorator-sample/package.json b/decorator-sample/package.json index e3226127..5205e510 100644 --- a/decorator-sample/package.json +++ b/decorator-sample/package.json @@ -41,7 +41,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/diagnostic-related-information-sample/package-lock.json b/diagnostic-related-information-sample/package-lock.json index e6ccde47..17997fa9 100644 --- a/diagnostic-related-information-sample/package-lock.json +++ b/diagnostic-related-information-sample/package-lock.json @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/diagnostic-related-information-sample/package.json b/diagnostic-related-information-sample/package.json index 5fc52f67..f9d57bd7 100644 --- a/diagnostic-related-information-sample/package.json +++ b/diagnostic-related-information-sample/package.json @@ -25,7 +25,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/document-editing-sample/package-lock.json b/document-editing-sample/package-lock.json index 8554ec4d..8b61c2c9 100644 --- a/document-editing-sample/package-lock.json +++ b/document-editing-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/document-editing-sample/package.json b/document-editing-sample/package.json index e8c65f93..754177b2 100644 --- a/document-editing-sample/package.json +++ b/document-editing-sample/package.json @@ -33,7 +33,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/extension-terminal-sample/package-lock.json b/extension-terminal-sample/package-lock.json index fc3202af..4a1317bd 100644 --- a/extension-terminal-sample/package-lock.json +++ b/extension-terminal-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/extension-terminal-sample/package.json b/extension-terminal-sample/package.json index 337a6009..3ec279a6 100644 --- a/extension-terminal-sample/package.json +++ b/extension-terminal-sample/package.json @@ -40,6 +40,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/fsconsumer-sample/package-lock.json b/fsconsumer-sample/package-lock.json index 3a49d913..ae111cfb 100644 --- a/fsconsumer-sample/package-lock.json +++ b/fsconsumer-sample/package-lock.json @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/fsconsumer-sample/package.json b/fsconsumer-sample/package.json index 6ebf0f8a..45ff664e 100644 --- a/fsconsumer-sample/package.json +++ b/fsconsumer-sample/package.json @@ -51,6 +51,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/fsprovider-sample/package-lock.json b/fsprovider-sample/package-lock.json index ce2f2735..1acee7fc 100644 --- a/fsprovider-sample/package-lock.json +++ b/fsprovider-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/fsprovider-sample/package.json b/fsprovider-sample/package.json index 08166fed..48dca1ad 100644 --- a/fsprovider-sample/package.json +++ b/fsprovider-sample/package.json @@ -85,7 +85,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/helloworld-sample/package.json b/helloworld-sample/package.json index 33716df1..4ef3a255 100644 --- a/helloworld-sample/package.json +++ b/helloworld-sample/package.json @@ -35,6 +35,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/helloworld-test-sample/package.json b/helloworld-test-sample/package.json index 2c29ec5b..112f16c5 100644 --- a/helloworld-test-sample/package.json +++ b/helloworld-test-sample/package.json @@ -42,7 +42,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "vscode-test": "^1.3.0" } } diff --git a/i18n-sample/package-lock.json b/i18n-sample/package-lock.json index 29e8817b..54ed66d3 100644 --- a/i18n-sample/package-lock.json +++ b/i18n-sample/package-lock.json @@ -5920,9 +5920,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uc.micro": { diff --git a/i18n-sample/package.json b/i18n-sample/package.json index af860fc5..f58a36ea 100644 --- a/i18n-sample/package.json +++ b/i18n-sample/package.json @@ -47,7 +47,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "vsce": "^1.61.0", "vscode-nls-dev": "^3.2.6" }, diff --git a/lsp-embedded-language-service/package.json b/lsp-embedded-language-service/package.json index 76a07eac..9dc1a577 100644 --- a/lsp-embedded-language-service/package.json +++ b/lsp-embedded-language-service/package.json @@ -46,6 +46,6 @@ "@types/mocha": "^5.2.7", "@types/node": "^12.12.0", "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/lsp-embedded-request-forwarding/package.json b/lsp-embedded-request-forwarding/package.json index 76a07eac..9dc1a577 100644 --- a/lsp-embedded-request-forwarding/package.json +++ b/lsp-embedded-request-forwarding/package.json @@ -46,6 +46,6 @@ "@types/mocha": "^5.2.7", "@types/node": "^12.12.0", "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/lsp-log-streaming-sample/package-lock.json b/lsp-log-streaming-sample/package-lock.json index e6caed39..fd566b56 100644 --- a/lsp-log-streaming-sample/package-lock.json +++ b/lsp-log-streaming-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/lsp-log-streaming-sample/package.json b/lsp-log-streaming-sample/package.json index 33f6aad1..0469fa2e 100644 --- a/lsp-log-streaming-sample/package.json +++ b/lsp-log-streaming-sample/package.json @@ -88,6 +88,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/lsp-multi-server-sample/package-lock.json b/lsp-multi-server-sample/package-lock.json index dedacf45..eecfc3b5 100644 --- a/lsp-multi-server-sample/package-lock.json +++ b/lsp-multi-server-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/lsp-multi-server-sample/package.json b/lsp-multi-server-sample/package.json index 0cc7126e..56b562a4 100644 --- a/lsp-multi-server-sample/package.json +++ b/lsp-multi-server-sample/package.json @@ -63,6 +63,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/lsp-sample/package-lock.json b/lsp-sample/package-lock.json index ea26aa07..bd6607e4 100644 --- a/lsp-sample/package-lock.json +++ b/lsp-sample/package-lock.json @@ -1599,9 +1599,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/lsp-sample/package.json b/lsp-sample/package.json index fc2ce95f..0dd921e2 100644 --- a/lsp-sample/package.json +++ b/lsp-sample/package.json @@ -58,6 +58,6 @@ "@types/node": "^12.12.0", "eslint": "^6.4.0", "@typescript-eslint/parser": "^2.3.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/lsp-user-input-sample/package.json b/lsp-user-input-sample/package.json index 90b787a3..cfa96c45 100644 --- a/lsp-user-input-sample/package.json +++ b/lsp-user-input-sample/package.json @@ -31,7 +31,7 @@ }, "devDependencies": { "@types/node": "^12.12.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "eslint": "^6.8.0", "@typescript-eslint/parser": "^2.31.0", "webpack": "^4.43.0", diff --git a/nodefs-provider-sample/package-lock.json b/nodefs-provider-sample/package-lock.json index 11225a12..95a03569 100644 --- a/nodefs-provider-sample/package-lock.json +++ b/nodefs-provider-sample/package-lock.json @@ -1228,9 +1228,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/nodefs-provider-sample/package.json b/nodefs-provider-sample/package.json index b6aa1148..d887b614 100644 --- a/nodefs-provider-sample/package.json +++ b/nodefs-provider-sample/package.json @@ -34,6 +34,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/progress-sample/package-lock.json b/progress-sample/package-lock.json index a8ab99df..ec7e1139 100644 --- a/progress-sample/package-lock.json +++ b/progress-sample/package-lock.json @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/progress-sample/package.json b/progress-sample/package.json index 90e2a353..53ede17f 100644 --- a/progress-sample/package.json +++ b/progress-sample/package.json @@ -41,6 +41,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/proposed-api-sample/package.json b/proposed-api-sample/package.json index 051596f2..61ce96c0 100644 --- a/proposed-api-sample/package.json +++ b/proposed-api-sample/package.json @@ -38,7 +38,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "vscode-dts": "^0.3.1" } } diff --git a/quickinput-sample/package-lock.json b/quickinput-sample/package-lock.json index 040496df..d0e9de04 100644 --- a/quickinput-sample/package-lock.json +++ b/quickinput-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/quickinput-sample/package.json b/quickinput-sample/package.json index 680e8a62..8fda63ad 100644 --- a/quickinput-sample/package.json +++ b/quickinput-sample/package.json @@ -33,7 +33,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/semantic-tokens-sample/package-lock.json b/semantic-tokens-sample/package-lock.json index 35296ba8..d2b04d5f 100644 --- a/semantic-tokens-sample/package-lock.json +++ b/semantic-tokens-sample/package-lock.json @@ -1187,9 +1187,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/semantic-tokens-sample/package.json b/semantic-tokens-sample/package.json index 40b63201..2c8c0e16 100644 --- a/semantic-tokens-sample/package.json +++ b/semantic-tokens-sample/package.json @@ -36,6 +36,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/source-control-sample/package-lock.json b/source-control-sample/package-lock.json index f599f4ad..4c65b6ee 100644 --- a/source-control-sample/package-lock.json +++ b/source-control-sample/package-lock.json @@ -1727,9 +1727,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/source-control-sample/package.json b/source-control-sample/package.json index f659af84..af9fe571 100644 --- a/source-control-sample/package.json +++ b/source-control-sample/package.json @@ -101,7 +101,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/statusbar-sample/package-lock.json b/statusbar-sample/package-lock.json index 1451e594..7185cbf4 100644 --- a/statusbar-sample/package-lock.json +++ b/statusbar-sample/package-lock.json @@ -1173,9 +1173,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/statusbar-sample/package.json b/statusbar-sample/package.json index cdaceb11..fdefedb3 100644 --- a/statusbar-sample/package.json +++ b/statusbar-sample/package.json @@ -28,7 +28,7 @@ "watch": "tsc -watch -p ./" }, "devDependencies": { - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", diff --git a/task-provider-sample/package-lock.json b/task-provider-sample/package-lock.json index 05c1cd39..2e4aa871 100644 --- a/task-provider-sample/package-lock.json +++ b/task-provider-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/task-provider-sample/package.json b/task-provider-sample/package.json index 03ba2a0b..9b895650 100644 --- a/task-provider-sample/package.json +++ b/task-provider-sample/package.json @@ -61,7 +61,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.39.0" } } diff --git a/terminal-sample/package-lock.json b/terminal-sample/package-lock.json index b65719a7..6856019a 100644 --- a/terminal-sample/package-lock.json +++ b/terminal-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/terminal-sample/package.json b/terminal-sample/package.json index b1c17c49..b3ed32e4 100644 --- a/terminal-sample/package.json +++ b/terminal-sample/package.json @@ -115,6 +115,6 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3" + "typescript": "^3.9.4" } } diff --git a/tree-view-sample/package-lock.json b/tree-view-sample/package-lock.json index 6070a48c..d3c38704 100644 --- a/tree-view-sample/package-lock.json +++ b/tree-view-sample/package-lock.json @@ -1326,9 +1326,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/tree-view-sample/package.json b/tree-view-sample/package.json index ce0a3626..46773a8d 100644 --- a/tree-view-sample/package.json +++ b/tree-view-sample/package.json @@ -217,7 +217,7 @@ "@types/node": "^12.12.0", "@types/rimraf": "^2.0.2", "@types/vscode": "^1.42.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0" diff --git a/vim-sample/package-lock.json b/vim-sample/package-lock.json index dfc788be..b866db1d 100644 --- a/vim-sample/package-lock.json +++ b/vim-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/vim-sample/package.json b/vim-sample/package.json index c9841131..4d02d635 100644 --- a/vim-sample/package.json +++ b/vim-sample/package.json @@ -75,7 +75,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/virtual-document-sample/package.json b/virtual-document-sample/package.json index ab009199..785fa868 100644 --- a/virtual-document-sample/package.json +++ b/virtual-document-sample/package.json @@ -58,7 +58,7 @@ "cowsay": "1.3.1" }, "devDependencies": { - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.32.0" } } diff --git a/webpack-sample/package-lock.json b/webpack-sample/package-lock.json index 3b7fc09c..f642d966 100644 --- a/webpack-sample/package-lock.json +++ b/webpack-sample/package-lock.json @@ -5056,9 +5056,9 @@ "dev": true }, "typescript": { - "version": "3.9.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.3.tgz", - "integrity": "sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "union-value": { diff --git a/webpack-sample/package.json b/webpack-sample/package.json index ee0abfbb..ed72186d 100644 --- a/webpack-sample/package.json +++ b/webpack-sample/package.json @@ -36,7 +36,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "webpack": "^4.38.0", "webpack-cli": "^3.3.6" } diff --git a/webview-sample/package-lock.json b/webview-sample/package-lock.json index 54e28fa0..e81de551 100644 --- a/webview-sample/package-lock.json +++ b/webview-sample/package-lock.json @@ -1179,9 +1179,9 @@ "dev": true }, "typescript": { - "version": "3.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.8.3.tgz", - "integrity": "sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==", + "version": "3.9.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-3.9.4.tgz", + "integrity": "sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==", "dev": true }, "uri-js": { diff --git a/webview-sample/package.json b/webview-sample/package.json index 3b1ead94..1f766aac 100644 --- a/webview-sample/package.json +++ b/webview-sample/package.json @@ -45,7 +45,7 @@ "@typescript-eslint/eslint-plugin": "^3.0.2", "@typescript-eslint/parser": "^3.0.2", "eslint": "^7.1.0", - "typescript": "^3.8.3", + "typescript": "^3.9.4", "@types/vscode": "^1.38.0" } }