Skip to content

Commit

Permalink
Fix debug configs for story:dev and story:build
Browse files Browse the repository at this point in the history
  • Loading branch information
iva2k committed Dec 3, 2024
1 parent 14cc72e commit 1fd6c1d
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,16 +101,24 @@
},

{
"command": "pnpm story",
"name": "pnpm story",
"request": "launch",
"type": "node-terminal"
"type": "node",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "story"],
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"resolveSourceMapLocations": null
},
{
"command": "pnpm story:build",
"name": "pnpm story:build",
"request": "launch",
"type": "node-terminal"
"type": "node",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["run", "story:build"],
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"resolveSourceMapLocations": null
},
{
"name": "WORKS pnpm test:unit",
Expand Down

0 comments on commit 1fd6c1d

Please sign in to comment.