mirror of
https://github.com/ribru17/ts_query_ls.git
synced 2025-12-23 05:36:52 +00:00
24 lines
562 B
JSON
24 lines
562 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Run Extension",
|
|
"type": "extensionHost",
|
|
"request": "launch",
|
|
"runtimeExecutable": "${execPath}",
|
|
"args": [
|
|
"--extensionDevelopmentPath=${workspaceFolder}"
|
|
],
|
|
"outFiles": [
|
|
"${workspaceFolder}/out/**/*.js"
|
|
],
|
|
"preLaunchTask": "Build Server and Extension",
|
|
"env": {
|
|
"SERVER_PATH": "${workspaceRoot}/../../target/release/ts_query_ls"
|
|
},
|
|
"skipFiles": [
|
|
"<node_internals>/**/*.js"
|
|
]
|
|
}
|
|
]
|
|
}
|