gale/.vscode/launch.json

12 lines
274 B
JSON
Raw Permalink Normal View History

2024-04-28 18:29:36 -04:00
{
"configurations": [
{
"name": "deno launch",
"request": "launch",
"type": "node",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "deno",
2024-06-07 12:03:46 -04:00
"runtimeArgs": ["styler.tsx"],
2024-04-28 18:29:36 -04:00
}
]
}