Skip to content

Commit 40060e1

Browse files
committed
restrict completions & eneble typechecking on ci
1 parent d6a6756 commit 40060e1

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
],
3333
"scripts": {
3434
"start": "vscode-framework start",
35-
"build": "vscode-framework build && node buildTsPlugin.mjs",
35+
"build": "tsc && vscode-framework build && node buildTsPlugin.mjs",
3636
"test": "pnpm test-plugin",
3737
"test-plugin": "vitest --globals",
3838
"watch-plugin": "tsc -p typescript -w",

tsconfig.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
11
{
2-
"extends": "@zardoy/tsconfig/node",
3-
"include": ["."]
2+
"extends": "@zardoy/tsconfig/",
3+
"compilerOptions": {
4+
"lib": [
5+
"ESNext",
6+
"WebWorker"
7+
]
8+
},
9+
// type-check sources
10+
"include": [
11+
"."
12+
]
413
}

0 commit comments

Comments
 (0)