Skip to content

Commit 9cd67c8

Browse files
committed
Do not check types on build
This allows scripts to be ran even if TS is mad, which is a lot of cases could fix the TS errors. This is available now that we are on TS 5.6+ We still run type checks separately in CI as well, so the checking here was a wasted step.
1 parent 0e15ed7 commit 9cd67c8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tsconfig.build.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"extends": "./tsconfig.json",
3+
"compilerOptions": {
4+
"noCheck": true
5+
},
36
"exclude": [
47
"node_modules",
58
"test",

0 commit comments

Comments
 (0)