You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the typescript compiler would need an incremental build mode to make "tsify like uses" faster. The same issue arises when using typescript in something like ruby on rails asset pipeline.
The incremental build mode would work exactly like tsc -w but it would use an on disk cache that could be used for fast compilation if the same command is issued again.
The text was updated successfully, but these errors were encountered:
The compiler provide a services API that can do most of this work. gulp-typescript uses the same API for incremental compilation. the other alternative is to use the new ts.transpile interface similar to the support in es6-module-loader.
mhegazy
added
Question
An issue which isn't directly actionable in code
API
Relates to the public API for TypeScript
labels
Jul 8, 2015
I'll have a deeper look at the API and see if I can improve the compilation speed. I'll come back here if more support is required on the typescript compiler side.
I am using tsify and browserify to build my typescript application.
It works, but it is sadly very slow ( TypeStrong/tsify#54 ).
It seems the typescript compiler would need an incremental build mode to make "tsify like uses" faster. The same issue arises when using typescript in something like ruby on rails asset pipeline.
The incremental build mode would work exactly like
tsc -w
but it would use an on disk cache that could be used for fast compilation if the same command is issued again.The text was updated successfully, but these errors were encountered: