Skip to content

Commit

Permalink
feat(build): enable TSC option "skipLibCheck"
Browse files Browse the repository at this point in the history
Disable type checking of declaration files. Declaration files are
typically shipped by our dependencies, we cannot apply our compiler
checks (e.g. noImplicitAny) on them.
  • Loading branch information
bajtos committed Mar 21, 2019
1 parent 5936fb9 commit 66bb506
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/build/config/tsconfig.common.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"strictNullChecks": true,
"resolveJsonModule": true,
"strictBindCallApply": true,
"skipLibCheck": true,

"lib": ["es2018", "dom", "esnext.asynciterable"],
"module": "commonjs",
Expand Down

0 comments on commit 66bb506

Please sign in to comment.