Skip to content

Commit

Permalink
style(types): re-enable skipLibCheck in tsconfig
Browse files Browse the repository at this point in the history
It's not possible to untangle node and react-native types unfortunately,
they clash. It is a known issue and apparently intractable, and
new typescript projects have skipLibCheck on so we acquiesce

Related #4306
  • Loading branch information
mikehardy committed Aug 12, 2021
1 parent a1d5b53 commit 90476b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"skipLibCheck": false,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
Expand Down

1 comment on commit 90476b8

@vercel
Copy link

@vercel vercel bot commented on 90476b8 Aug 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.