Hi guys, does any one know how to configure VSCode...
# help
m
Hi guys, does any one know how to configure VSCode debug when a project is inside monorepo? I mean sst.json is not in root.
s
Hey @Manoel Feliciano, Had to figure this out before. You would keep your
.vscode/launch.json
on your root, but on the debugger configuration for SST start you would add
"cwd": "${workspaceRoot}/[name-of-SST-directory]"
to let debugger know where to look for the SST commands.
m
Hey @Sione, thanks a lot man!
😄
s
Np. Hope it works.