Skip to content

Commit

Permalink
Add local-installed folders to outFiles for launch
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Oct 28, 2021
1 parent 612e107 commit 65abb6f
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
"${workspaceFolder}/dist/**/*.js",
"${workspaceFolder}/../brighterscript-formatter/dist/**/*.js",
"${workspaceFolder}/../roku-debug/dist/**/*.js",
"${workspaceFolder}/../roku-deploy/dist/**/*.js",
"${workspaceFolder}/../brighterscript/dist/**/*.js"
]
},
{
Expand All @@ -25,7 +29,8 @@
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js",
"${workspaceFolder}/../roku-debug/dist/**/*.js"
"${workspaceFolder}/../roku-debug/dist/**/*.js",
"${workspaceFolder}/../roku-deploy/dist/**/*.js"
],
"stopOnEntry": false
},
Expand All @@ -35,7 +40,12 @@
"request": "attach",
"port": 6009,
"restart": true,
"timeout": 120000
"timeout": 120000,
"outFiles": [
"${workspaceFolder}/dist/**/*.js",
"${workspaceFolder}/../brighterscript/dist/**/*.js",
"${workspaceFolder}/../roku-deploy/dist/**/*.js"
],
},
{
"name": "Debug Tests",
Expand Down Expand Up @@ -69,8 +79,7 @@
"name": "Extension + Debug Server",
"configurations": [
"Extension",
"Debug Server",
"Language Server"
"Debug Server"
]
},
{
Expand All @@ -81,4 +90,4 @@
]
}
]
}
}

0 comments on commit 65abb6f

Please sign in to comment.