Skip to content

Commit

Permalink
chore: add build TS tasks to check types quickly (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienIzz authored Sep 17, 2024
1 parent 8f32f84 commit 4534522
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "yarn test:lint",
"problemMatcher": ["$eslint-stylish"],
"group": "test",
"label": "Lint"
},
{
"type": "typescript",
"label": "Typescript example",
"tsconfig": "packages/example/tsconfig.json",
"problemMatcher": ["$tsc"],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"type": "typescript",
"label": "Typescript lib",
"tsconfig": "packages/lib/tsconfig.json",
"problemMatcher": ["$tsc"],
"group": {
"kind": "build",
"isDefault": true
}
}
]
}

0 comments on commit 4534522

Please sign in to comment.