From b24d381c596f2ef5e8f05731cbc0f4aa99b54d93 Mon Sep 17 00:00:00 2001 From: "Frederik P. B. H" Date: Thu, 26 Aug 2021 19:12:24 +0200 Subject: [PATCH] Now includes .vscode folder for easy usage in vscode. --- .gitignore | 1 - .vscode/launch.json | 11 +++++++++++ .vscode/tasks.json | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 880a1c5..210e4aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -.vscode node_modules out bin \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..d4d288f --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,11 @@ +{ + "configurations": [ + { + "type": "node-terminal", + "name": "Run Script: start", + "request": "launch", + "command": "npm run start", + "cwd": "${workspaceFolder}" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..5adab9a --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,33 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "start", + "group": "build", + "problemMatcher": [], + "label": "npm: start" + }, + { + "type": "npm", + "script": "build:dev", + "group": "build", + "problemMatcher": [], + "label": "npm: build dev" + }, + { + "type": "npm", + "script": "build:pub", + "group": "build", + "problemMatcher": [], + "label": "npm: build pub" + }, + { + "type": "npm", + "script": "package", + "group": "build", + "problemMatcher": [], + "label": "npm: package" + } + ] +}