Skip to content

Commit

Permalink
Update tasks.json
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Aug 12, 2024
1 parent 4130c55 commit 4a5d9bd
Showing 1 changed file with 57 additions and 4 deletions.
61 changes: 57 additions & 4 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,72 @@
"version": "2.0.0",
"tasks": [
{
"label": "Run Dev Test",
"type": "npm",
"script": "dev-test",
"problemMatcher": []
"problemMatcher": [],
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "shared",
"showReuseMessage": true,
"clear": true
},
"runOptions": {
"runOn": "default"
}
},
{
"label": "TypeScript Build",
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"problemMatcher": ["$tsc"],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"runOptions": {
"runOn": "folderOpen"
}
},
{
"label": "NPM Install",
"type": "shell",
"command": "npm install",
"problemMatcher": [],
"group": "build",
"presentation": {
"reveal": "always",
"panel": "shared",
"clear": true
},
"runOptions": {
"runOn": "folderOpen"
}
},
{
"label": "Lint Code",
"type": "npm",
"script": "lint",
"problemMatcher": ["$eslint-stylish"],
"group": {
"kind": "test",
"isDefault": false
},
"presentation": {
"reveal": "always",
"panel": "shared",
"showReuseMessage": true,
"clear": true
}
}
]
Expand Down

0 comments on commit 4a5d9bd

Please sign in to comment.