diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-03-25 20:08:26 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-03-27 15:16:23 +0800 |
commit | 1dbf4ed28a095013837ecbbc0c7c1ba0e7ebacfa (patch) | |
tree | 59d954eff52c9345649a94d6770cdd63d893cb84 /.vscode | |
parent | 2e78c013df3bf1f05ec5da7c97506b8e62d5280b (diff) | |
download | lua-language-server-1dbf4ed28a095013837ecbbc0c7c1ba0e7ebacfa.zip |
#462 supports debugger attach
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 78055652..c23af9d7 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -32,6 +32,12 @@ "stopOnEntry": true, "address": "127.0.0.1:11427", "outputCapture": [ + ], + "sourceMaps": [ + [ + "./*", + "${workspaceFolder}/*" + ] ] }, ] |