diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..ecbcce6 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +// Place your settings in this file to overwrite default and user settings. +{ + "editor.tabSize": 4, + "files.trimTrailingWhitespace": true +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..941eadf --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,26 @@ +{ + "version": "0.1.0", + "command": "gulp", + "isShellCommand": true, + "args": [ + "--no-color" + ], + "tasks": [ + { + "taskName": "build-all", + "isBuildCommand": true, + "showOutput": "always", + "problemMatcher": { + "fileLocation": ["relative", "${workspaceRoot}"], + "pattern": { + "regexp": "^(.*)\\((.*),(.*)\\):\\s(error|warning)\\s(.*)$", + "file": 1, + "line": 2, + "column": 3, + "severity": 4, + "message": 5 + } + } + } + ] +} \ No newline at end of file