Skip to content

Commit

Permalink
Revert "try adding skipLibCheck to base config"
Browse files Browse the repository at this point in the history
This reverts commit d3f9a60.
  • Loading branch information
sirreal committed May 8, 2024
1 parent d3f9a60 commit 0e1a98c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion packages/block-editor/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"rootDir": "src",
"declarationDir": "build-types"
"declarationDir": "build-types",
"skipLibCheck": true
},
"references": [
{ "path": "../a11y" },
Expand Down
3 changes: 2 additions & 1 deletion packages/block-library/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"rootDir": "src",
"declarationDir": "build-types",
"types": [ "gutenberg-env" ],
"strictNullChecks": true
"strictNullChecks": true,
"skipLibCheck": true
},
"references": [
{ "path": "../a11y" },
Expand Down
3 changes: 2 additions & 1 deletion packages/components/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"gutenberg-test-env",
"jest",
"@testing-library/jest-dom"
]
],
"skipLibCheck": true
},
"references": [
{ "path": "../a11y" },
Expand Down
1 change: 1 addition & 0 deletions packages/dataviews/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"compilerOptions": {
"rootDir": "src",
"declarationDir": "build-types",
"skipLibCheck": true,
"checkJs": false
},
"references": [
Expand Down
3 changes: 2 additions & 1 deletion packages/plugins/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"compilerOptions": {
"rootDir": "src",
"declarationDir": "build-types",
"types": [ "gutenberg-env" ]
"types": [ "gutenberg-env" ],
"skipLibCheck": true
},
"references": [
{ "path": "../components" },
Expand Down
1 change: 0 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
"composite": true,
"emitDeclarationOnly": true,
"isolatedModules": true,
"skipLibCheck": true,

/* Strict Type-Checking Options */
"strict": true,
Expand Down

0 comments on commit 0e1a98c

Please sign in to comment.