Skip to content

Commit

Permalink
enable typescript incremental builds (#14790)
Browse files Browse the repository at this point in the history
this is to make running tsc locally faster(for me it around 10x improvement shorting it from 40 to 4 seconds)
  • Loading branch information
zxbodya committed Jul 24, 2022
1 parent 60a49e3 commit 6af3ba7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -91,3 +91,5 @@ packages/babel-standalone/babel.min.js
/test/runtime-integration/*/absolute-output.js

.module-type

*.tsbuildinfo
3 changes: 2 additions & 1 deletion tsconfig.base.json
Expand Up @@ -14,6 +14,7 @@
"resolveJsonModule": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictBindCallApply": true
"strictBindCallApply": true,
"incremental": true
}
}

0 comments on commit 6af3ba7

Please sign in to comment.