add to git

This commit is contained in:
David Meincke
2022-03-21 17:43:17 +01:00
commit bb44e0e92d
33 changed files with 23209 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
// 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": [
{
"command": "npm install",
"name": "1. Install NPM packages (first time only)",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run server",
"name": "2. Start server (w. hot)",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run production",
"name": "3. Build for production",
"request": "launch",
"type": "node-terminal"
},
]
}