From b51b13135155bf47a56889836796e4886196a545 Mon Sep 17 00:00:00 2001 From: Eric Traut Date: Sun, 27 Sep 2020 22:20:03 -0700 Subject: [PATCH] Fixed launch.json for launching the CLI. --- .vscode/launch.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 8a3c4f900..a63139602 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,14 +5,12 @@ "name": "Pyright CLI", "type": "node", "request": "launch", - "program": "${workspaceRoot}/packages/pyright/dist/pyright.js", + "program": "${workspaceRoot}/packages/pyright/index.js", "protocol": "inspector", - "cwd": "${workspaceRoot}", "preLaunchTask": "npm: build:cli:dev", "args": [ - "-p", - "${workspaceRoot}/../brain", - "--stats" + "--verifytypes", + "aiohttp", ], "internalConsoleOptions": "openOnSessionStart", "outFiles": [ @@ -114,4 +112,4 @@ "program": "${workspaceFolder}/packages/pyright-internal/node_modules/jest/bin/jest" } ] -} +} \ No newline at end of file