mirror of
https://github.com/sveltejs/svelte.git
synced 2024-12-01 09:21:21 +01:00
15bdadb2ae
* initialize playground * pnpm up * tidy up git ignore * remove fluff * format * rm readme * fix jsconfig error * add skip-worktree instructions * reload hack * simplify * use rollup * ughh * add flag for SSR * ... * simplify further * configure launch.json * add debugger info to readme * remove vm modules flag * use replaceAll instead of replace * tidy up * fix: make it run * add watch to launch config
28 lines
581 B
JSON
28 lines
581 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}/packages/playground",
|
|
"cascadeTerminateToConfigurations": ["Playground: Browser"]
|
|
}
|
|
],
|
|
"compounds": [
|
|
{
|
|
"name": "Playground: Full",
|
|
"configurations": ["Playground: Server", "Playground: Browser"]
|
|
}
|
|
]
|
|
}
|