Skip to content

Commit 8fe0de8

Browse files
committed
🔧 switched npm run build back to default build task
1 parent 8fdb7a5 commit 8fe0de8

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

.vscode/tasks.json

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,16 @@
22
"version": "2.0.0",
33
"tasks": [
44
{
5-
"type": "typescript",
6-
"tsconfig": "tsconfig.json",
7-
"option": "watch",
5+
"label": "build",
6+
"command": "npm run build",
7+
"type": "shell",
88
"problemMatcher": [
9-
"$tsc-watch"
9+
"$tsc"
1010
],
1111
"group": {
1212
"kind": "build",
1313
"isDefault": true
14-
},
15-
"label": "tsc: watch - tsconfig.json"
16-
},
17-
{
18-
"label": "build",
19-
"command": "npm run build",
20-
"type": "shell"
14+
}
2115
},
2216
{
2317
"label": "coverage:open",
@@ -61,6 +55,15 @@
6155
"kind": "test",
6256
"isDefault": true
6357
}
58+
},
59+
{
60+
"label": "tsc: watch",
61+
"type": "typescript",
62+
"tsconfig": "tsconfig.json",
63+
"option": "watch",
64+
"problemMatcher": [
65+
"$tsc-watch"
66+
]
6467
}
6568
]
6669
}

0 commit comments

Comments
 (0)