-
Notifications
You must be signed in to change notification settings - Fork 272
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Visual Studio Code Development Integration Improvements
- Loading branch information
Showing
3 changed files
with
65 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)" | ||
} | ||
] | ||
} |