Skip to content

Commit 4534522

Browse files
authored
chore: add build TS tasks to check types quickly (#155)
1 parent 8f32f84 commit 4534522

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

.vscode/tasks.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "shell",
6+
"command": "yarn test:lint",
7+
"problemMatcher": ["$eslint-stylish"],
8+
"group": "test",
9+
"label": "Lint"
10+
},
11+
{
12+
"type": "typescript",
13+
"label": "Typescript example",
14+
"tsconfig": "packages/example/tsconfig.json",
15+
"problemMatcher": ["$tsc"],
16+
"group": {
17+
"kind": "build",
18+
"isDefault": true
19+
}
20+
},
21+
{
22+
"type": "typescript",
23+
"label": "Typescript lib",
24+
"tsconfig": "packages/lib/tsconfig.json",
25+
"problemMatcher": ["$tsc"],
26+
"group": {
27+
"kind": "build",
28+
"isDefault": true
29+
}
30+
}
31+
]
32+
}

0 commit comments

Comments
 (0)