From 8f3814966e7ab6dd838f89fbe1e9f5f08c66efee Mon Sep 17 00:00:00 2001 From: Ikhsan Assaat Date: Mon, 16 Oct 2023 18:00:56 +0100 Subject: [PATCH] Use object instead of string for env --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index fb9b681c..1b82e8ca 100644 --- a/package.json +++ b/package.json @@ -84,7 +84,7 @@ "description": "Specify pairs of remote root path and local root path like `/remote_dir:/local_dir`. `/remote_dir:$(workspaceFolder)` is useful. You can specify multiple pairs like `/rem1:/loc1,/rem2:/loc2` by concatenating with `,`." }, "env": { - "type": "string", + "type": "object", "description": "Additional environment variables to pass to the rdbg process", "default": {} }