Skip to content

Commit e341e91

Browse files
build(tsconfig): enable skipLibCheck to fix TypeScript build errors
Add skipLibCheck option to tsconfig.build.json to skip type checking of declaration files in node_modules. This resolves build failures caused by type conflicts between @types/eslint-scope and built-in ESLint types after the ESLint 10 update.
1 parent 0b1032c commit e341e91

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tsconfig.build.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"declarationMap": true,
99
"sourceMap": true,
1010
"strict": true,
11+
"skipLibCheck": true,
1112
"outDir": "lib",
1213
"jsx": "react-jsx"
1314
},

0 commit comments

Comments
 (0)