From eac7521ce20d62aa96597a54c3c58f3ee9fffede Mon Sep 17 00:00:00 2001 From: Zeh Fernando Date: Mon, 23 Jan 2017 13:41:38 -0500 Subject: [PATCH] Configured project tasks for VSCode --- .vscode/tasks.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..2164008 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,27 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=733558 + // for the documentation about the tasks.json format + "version": "0.1.0", + "command": "npm", + "isShellCommand": true, + "showOutput": "always", + "suppressTaskName": true, + "tasks": [ + { + "taskName": "build", + "args": ["run", "build"] + }, + { + "taskName": "watch", + "args": ["run", "watch"] + }, + { + "taskName": "test", + "args": ["run", "test"] + }, + { + "taskName": "test:watch", + "args": ["run", "test:watch"] + } + ] +} \ No newline at end of file