Skip to content
This repository was archived by the owner on Jan 6, 2026. It is now read-only.

Commit a44eceb

Browse files
committed
add npm compile task
1 parent 43be521 commit a44eceb

File tree

1 file changed

+35
-25
lines changed

1 file changed

+35
-25
lines changed

.vscode/tasks.json

Lines changed: 35 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
// See https://go.microsoft.com/fwlink/?LinkId=733558
22
// for the documentation about the tasks.json format
33
{
4-
"version": "2.0.0",
5-
"tasks": [
6-
{
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"type": "npm",
8+
"script": "compile",
9+
"problemMatcher": [
10+
"$tsc"
11+
],
12+
"group": "build",
13+
"label": "npm: compile",
14+
"detail": "npm run check-types && npm run lint && node esbuild.js"
15+
},
16+
{
717
"label": "watch",
818
"dependsOn": [
919
"npm: watch:tsc",
@@ -29,7 +39,7 @@
2939
"reveal": "never"
3040
}
3141
},
32-
{
42+
{
3343
"type": "npm",
3444
"script": "watch:tsc",
3545
"group": "build",
@@ -41,24 +51,24 @@
4151
"reveal": "never"
4252
}
4353
},
44-
{
45-
"type": "npm",
46-
"script": "watch-tests",
47-
"problemMatcher": "$tsc-watch",
48-
"isBackground": true,
49-
"presentation": {
50-
"reveal": "never",
51-
"group": "watchers"
52-
},
53-
"group": "build"
54-
},
55-
{
56-
"label": "tasks: watch-tests",
57-
"dependsOn": [
58-
"npm: watch",
59-
"npm: watch-tests"
60-
],
61-
"problemMatcher": []
62-
}
63-
]
64-
}
54+
{
55+
"type": "npm",
56+
"script": "watch-tests",
57+
"problemMatcher": "$tsc-watch",
58+
"isBackground": true,
59+
"presentation": {
60+
"reveal": "never",
61+
"group": "watchers"
62+
},
63+
"group": "build"
64+
},
65+
{
66+
"label": "tasks: watch-tests",
67+
"dependsOn": [
68+
"npm: watch",
69+
"npm: watch-tests"
70+
],
71+
"problemMatcher": []
72+
}
73+
]
74+
}

0 commit comments

Comments
 (0)