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
When I run the task with --allowJs set to true, it takes about 10seconds to build my project. Moreover it takes 10 seconds after any change in my files, ie it is not incrementaly.
When --allowJs is disabled, it takes about 1 second to build the whole project, and 100ms to build incrementally.
The text was updated successfully, but these errors were encountered:
in the allowJS case, you are pulling in many more files (244 vs. 50). we are spending 2 more seconds in additional IO (reading the extra files, and writing their output) and 2 more seconds in type checking them see below.
TypeScript Version:
1.8.9
tsconfig.json
gulp task
When I run the task with --allowJs set to true, it takes about 10seconds to build my project. Moreover it takes 10 seconds after any change in my files, ie it is not incrementaly.
When --allowJs is disabled, it takes about 1 second to build the whole project, and 100ms to build incrementally.
The text was updated successfully, but these errors were encountered: