From f673bad8972ec159945534686fb8e1aa61c84307 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Mon, 15 Jan 2024 17:21:45 +0300 Subject: [PATCH] Added frequently needed scripts to the VSC config --- .vscode/tasks.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..62886ba --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,23 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "codegen", + "type": "npm", + "script": "generate", + "problemMatcher": "$tsc", + }, + { + "label": "build", + "type": "npm", + "script": "build", + "problemMatcher": "$tsc", + }, + { + "label": "test", + "type": "npm", + "script": "test", + "problemMatcher": "$eslint-stylish", + }, + ], +}