mirror of
https://github.com/sveltejs/svelte.git
synced 2024-11-22 12:27:29 +01:00
fe8a9ce31d
Co-authored-by: Rich Harris <rich.harris@vercel.com> Co-authored-by: Simon Holthausen <simon.holthausen@vercel.com> Co-authored-by: Dominic Gannaway <dg@domgan.com>
28 lines
578 B
JSON
28 lines
578 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"name": "Playground: Browser",
|
|
"url": "http://localhost:10001"
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeArgs": ["--watch"],
|
|
"name": "Playground: Server",
|
|
"outputCapture": "std",
|
|
"program": "start.js",
|
|
"cwd": "${workspaceFolder}/playgrounds/demo",
|
|
"cascadeTerminateToConfigurations": ["Playground: Browser"]
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Playground: Full",
|
|
"configurations": ["Playground: Server", "Playground: Browser"]
|
|
}
|
|
]
|
|
}
|