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
@utc8 AFAIK transpileOnly: true depends on isolatedModules: true since it aspires to be as fast as possible, thus forcing parallel compilation of source files.
If the files/modules are not isolated, you cannot parallelize the compilation safely (if there is no isolation, you will need to "see" all files at once, resolve some edge cases [like const enums...], and then compile - which is not truly parallel).
Expected Behaviour
Successfully compile project with:
transpileOnly: true
ints-loader
and"isolatedModules": false
intsconfig.json
Actual Behaviour
Steps to Reproduce the Problem
The text was updated successfully, but these errors were encountered: