We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6a6756 commit 40060e1Copy full SHA for 40060e1
package.json
@@ -32,7 +32,7 @@
32
],
33
"scripts": {
34
"start": "vscode-framework start",
35
- "build": "vscode-framework build && node buildTsPlugin.mjs",
+ "build": "tsc && vscode-framework build && node buildTsPlugin.mjs",
36
"test": "pnpm test-plugin",
37
"test-plugin": "vitest --globals",
38
"watch-plugin": "tsc -p typescript -w",
tsconfig.json
@@ -1,4 +1,13 @@
1
{
2
- "extends": "@zardoy/tsconfig/node",
3
- "include": ["."]
+ "extends": "@zardoy/tsconfig/",
+ "compilerOptions": {
4
+ "lib": [
5
+ "ESNext",
6
+ "WebWorker"
7
+ ]
8
+ },
9
+ // type-check sources
10
+ "include": [
11
+ "."
12
13
}
0 commit comments