Fixed launch.json for launching the CLI.

This commit is contained in:
Eric Traut 2020-09-27 22:20:03 -07:00
parent 61f483fcb5
commit b51b131351

10
.vscode/launch.json vendored
View File

@ -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"
}
]
}
}