Skip to content

Commit

Permalink
Development environment VScode tasks
Browse files Browse the repository at this point in the history
When the project folder is open, the development environment VScode
tasks now start automatically to compile TypeScript code and run tests.
  • Loading branch information
Gabriel-434 committed Apr 26, 2024
1 parent 9396b21 commit 8ad8c94
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,24 @@
"id": "run-all",
"color": "terminal.ansiGreen"
}
},
{
"label": "Dev environment",
"detail": "Start the development environment VScode tasks",
"dependsOn": ["TypeScript compiler", "Tests suite"],
"dependsOrder": "sequence",
"runOptions": {
"runOn": "folderOpen",
"instanceLimit": 1
},
"icon": {
"id": "server-environment",
"color": "terminal.ansiBlue"
},
"group": {
"kind": "none"
},
"problemMatcher": []
}
]
}

0 comments on commit 8ad8c94

Please sign in to comment.