gulp-typescript: Version 2.11.0 transpiles incredibly slow.
Compiling my project increases from 7s (2.10.0) to 17s (2.11.0). In both version I don’t see real speed increase using ts.createProject
.
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 16 (5 by maintainers)
Commits related to this issue
- Fix performance of tsProject.src(), fix #282 — committed to JakeJP/gulp-typescript by ivogabe 8 years ago
Thanks for the measurements everyone. I think I know what’s going on. What happens when you replace
tsProject.src()
withgulp.src('lib/**/*.ts')
(adjust this so it fits your project structure)? Does that give the old compilation time?Absolutely! Back to sub-second compile.