diff --git a/.vscode/launch.json b/.vscode/launch.json index 29a5ef9..b5501d6 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -101,16 +101,24 @@ }, { - "command": "pnpm story", "name": "pnpm story", "request": "launch", - "type": "node-terminal" + "type": "node", + "runtimeExecutable": "pnpm", + "runtimeArgs": ["run", "story"], + "skipFiles": ["/**"], + "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": ["/**"], + "sourceMaps": true, + "resolveSourceMapLocations": null }, { "name": "WORKS pnpm test:unit",