huncwot
Version:
A Programming Environment for TypeScript apps built on top of VS Code
40 lines (39 loc) • 944 B
JSON
// A launch configuration that compiles the extension and then opens it inside a new window
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"compounds": [
{
"name": "Debug",
"configurations": [
"Debug Client",
"Debug Server"
]
}
],
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Debug Client",
"url": "http://localhost:5544",
"sourceMaps": true,
"webRoot": "${workspaceFolder}/public"
},
{
"type": "node",
"request": "attach",
"name": "Debug Server",
"restart": true,
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"sourceMaps": true,
"skipFiles": [
"<node_internals>/**"
]
}
]
}