From e2ce408ec83931766d228ef93ff0331d293ae07f Mon Sep 17 00:00:00 2001 From: Mike Date: Fri, 16 Jul 2021 05:21:41 -0400 Subject: [PATCH] Add --enable-proposed-api to launch.json (#346) --- tree-view-sample/.vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tree-view-sample/.vscode/launch.json b/tree-view-sample/.vscode/launch.json index 9b05b66b..378f9311 100644 --- a/tree-view-sample/.vscode/launch.json +++ b/tree-view-sample/.vscode/launch.json @@ -8,7 +8,9 @@ "request": "launch", "runtimeExecutable": "${execPath}", "args": [ - "--extensionDevelopmentPath=${workspaceRoot}" + "--extensionDevelopmentPath=${workspaceRoot}", + "--enable-proposed-api", + "vscode-samples.custom-view-samples" ], "stopOnEntry": false, "sourceMaps": true, @@ -29,4 +31,4 @@ ] } ] -} \ No newline at end of file +}