From 13f786a659082306d8194359bf7c3ec583a793f1 Mon Sep 17 00:00:00 2001 From: Alexey Utkin Date: Fri, 4 Nov 2022 20:16:10 +0400 Subject: [PATCH] Possible UI/UX improvements of UTBot Wizard #494 - check presence of SFTP and SARIF plugins - configure SFTP by writing `sftp.conf` - runs SFTP sync for project with server copy Signed-off-by: Alexey Utkin --- vscode-plugin/package.json | 1 + vscode-plugin/tsconfig.json | 1 + 2 files changed, 2 insertions(+) diff --git a/vscode-plugin/package.json b/vscode-plugin/package.json index f84bff528..e04ed1c0d 100644 --- a/vscode-plugin/package.json +++ b/vscode-plugin/package.json @@ -571,6 +571,7 @@ "@types/randomstring": "1.1.8", "@types/ssh2": "1.11.6", "@types/vscode": "1.64.0", + "@types/ssh2-streams": "0.1.9", "emittery": "0.10.1", "filepath": "1.1.0", "google-protobuf": "3.12.4", diff --git a/vscode-plugin/tsconfig.json b/vscode-plugin/tsconfig.json index 833903d44..8ad8f4cb0 100644 --- a/vscode-plugin/tsconfig.json +++ b/vscode-plugin/tsconfig.json @@ -9,6 +9,7 @@ ], "sourceMap": true, "rootDir": "src", + "esModuleInterop": true, "strict": true /* enable all strict type-checking options */ /* Additional Checks */ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */