Skip to content

Commit

Permalink
build: Define a default build task in VSCode for type checking
Browse files Browse the repository at this point in the history
  • Loading branch information
Septh committed Jul 29, 2024
1 parent b691e9b commit 143c7b8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib",
"terminal.integrated.automationProfile.windows": {
"path": "pwsh.exe"
},
"debug.javascript.terminalOptions": {
"skipFiles": [
"<node_internals>/**",
Expand Down
18 changes: 18 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "tsc: watch - test/tsconfig.json",
"group": {
"kind": "build",
"isDefault": true
},
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
]
}
]
}

0 comments on commit 143c7b8

Please sign in to comment.