Skip to content

Commit b8be08a

Browse files
committed
Add vs code config.
Added the VS Code config for this app.
1 parent bb3e497 commit b8be08a

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ yarn-error.log*
1313

1414
# Editor directories and files
1515
.idea
16-
.vscode
1716
*.suo
1817
*.ntvs*
1918
*.njsproj

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"azureStorage.preDeployTask": "npm build"
3+
}

.vscode/tasks.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "shell",
6+
"label": "npm build",
7+
"command": "npm run build"
8+
}
9+
]
10+
}

0 commit comments

Comments
 (0)