mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
38 lines
895 B
JSON
38 lines
895 B
JSON
{
|
|
// 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",
|
|
"configurations": [{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "official-storybook",
|
|
"runtimeExecutable": "npm",
|
|
"cwd": "${workspaceFolder}/examples/official-storybook",
|
|
"runtimeArgs": [
|
|
"run-script",
|
|
"debug"
|
|
],
|
|
"port": 9229,
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
]
|
|
}, {
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "cli html",
|
|
"cwd": "${workspaceFolder}/lib/cli/stories",
|
|
"runtimeArgs": [
|
|
"--inspect-brk",
|
|
"${workspaceFolder}/lib/cli/bin/index.js",
|
|
"init",
|
|
"--type",
|
|
"html"
|
|
],
|
|
"port": 9229,
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
]
|
|
}
|
|
]
|
|
} |