Add Codespaces configuration

This commit is contained in:
Kevin Kandlbinder 2020-12-27 13:42:39 +01:00
parent 75c52c744d
commit 24f7d14317
7 changed files with 558 additions and 0 deletions

13
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,13 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Dev Server",
"program": "npm run develop",
"cwd": "${workspaceFolder}",
"preLaunchTask": "npm install"
}
]
}