Add VSCode specific exclusions (#1568)

This commit is contained in:
Nev 2021-06-07 15:43:08 -07:00 коммит произвёл GitHub
Родитель 18f818a432
Коммит be8185e038
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 3 добавлений и 28 удалений

3
.gitignore поставляемый
Просмотреть файл

@ -64,6 +64,9 @@ ipch/
*.vsp
*.vspx
# Visual Studio Code
.vscode/**
# Guidance Automation Toolkit
*.gpState

28
.vscode/tasks.json поставляемый
Просмотреть файл

@ -1,28 +0,0 @@
{
"version": "0.1.0",
"command": "grunt",
"isShellCommand": true,
"showOutput": "always",
"tasks": [
{
"taskName": "default",
"args": [],
"isBuildCommand": true,
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
},
{
"taskName": "module",
"args": [],
"isBuildCommand": true,
"problemMatcher": [
"$lessCompile",
"$tsc",
"$jshint"
]
}
]
}