Skip to content

Commit 64e994c

Browse files
committed
Enable skipLibCheck in tsconfig.scripts.json to prevent type errors
``` node_modules/esbuild/lib/main.d.ts(643,22): error TS2304: Cannot find name 'URL'. node_modules/esbuild/lib/main.d.ts(653,16): error TS2503: Cannot find namespace 'WebAssembly'. ```
1 parent 9212ed2 commit 64e994c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tsconfig.scripts.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
"compilerOptions": {
44
"typeRoots": ["./types", "./node_modules/@types"],
55
"types": ["node", "babel__core"],
6-
"noEmit": true
6+
"noEmit": true,
7+
"skipLibCheck": true
78
},
89
"include": [
910
"*.js",

0 commit comments

Comments
 (0)