Skip to content

Commit

Permalink
Visual Studio Code Development Integration Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
mhutchie committed Mar 17, 2021
1 parent 4960650 commit 5ca83ed
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"version": "0.2.0",
"configurations": [{
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
Expand All @@ -13,4 +14,4 @@
]
}
]
}
}
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,9 @@
},
"search.exclude": {
"out": true
}
},
"task.problemMatchers.neverPrompt": {
"npm": true
},
"typescript.tsdk": "./node_modules/typescript/lib"
}
57 changes: 57 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"version": "2.0.0",
"presentation": {
"reveal": "always",
"focus": false,
"echo": true,
"showReuseMessage": false,
"panel": "shared"
},
"tasks": [
{
"type": "npm",
"script": "compile",
"label": "Compile"
},
{
"type": "npm",
"script": "compile-src",
"label": "Compile (Back-End Only)"
},
{
"type": "npm",
"script": "compile-web",
"label": "Compile (Front-End Only)"
},
{
"type": "npm",
"script": "compile-web-debug",
"label": "Compile (Front-End Only) - Debug"
},
{
"type": "npm",
"script": "lint",
"label": "Lint"
},
{
"type": "npm",
"script": "package",
"label": "Package VSIX"
},
{
"type": "npm",
"script": "package-and-install",
"label": "Package VSIX (Install on Completion)"
},
{
"type": "npm",
"script": "test",
"label": "Run Unit Tests"
},
{
"type": "npm",
"script": "test-and-report-coverage",
"label": "Run Unit Tests (Report Code Coverage)"
}
]
}

0 comments on commit 5ca83ed

Please sign in to comment.