Skip to content

Commit 71d7734

Browse files
committed
Fix tsconfig again
1 parent 0675a1c commit 71d7734

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"background": {
4343
"activeOnStart": true,
4444
"beginsPattern": {
45-
"regexp": "[Cc]ompiling.*?|[Cc]ompil(ation|er) .*?starting"
45+
"regexp": "[Cc]ompiling.*?|[Cc]ompil(ation|er) .*?starting|.* \\[built\\] .*"
4646
},
4747
"endsPattern": {
4848
"regexp": "[Cc]ompiled (.*?successfully|with .*?(error|warning))|[Cc]ompil(ation|er) .*?finished"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@
135135
"vscode:prepublish": "webpack --mode production",
136136
"compile-proxy": "webpack --mode development",
137137
"watch-proxy": "webpack watch --mode development",
138-
"compile-ext": "tsc -b",
139-
"watch-ext": "tsc -b -w",
138+
"compile-ext": "tsc -b tsconfig.compile.json",
139+
"watch-ext": "tsc -b -w tsconfig.compile.json",
140140
"package": "vsce package --yarn",
141141
"lint": "eslint . --ext .ts",
142142
"test": "mocha -u tdd",

tsconfig.compile.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"exclude": [
4+
"node_modules",
5+
".vscode-test",
6+
"src/**/local-ssh/*.ts"
7+
]
8+
}

tsconfig.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@
4242
},
4343
"exclude": [
4444
"node_modules",
45-
".vscode-test",
46-
"src/**/local-ssh/*.ts"
45+
".vscode-test"
4746
]
4847
}

0 commit comments

Comments
 (0)