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
I'm making some progress getting the TypeScript tests running for SystemJS builder. Currently this issue and systemjs/builder#262 are the blocking issues as far as I can tell.
For the following input source running against the currently nightly:
When processing the whole program TypeScript compiler will elide imports that are not used in as values. There is a compiler option isolatedModules to relax this behavior and suppress elision, it is used when files are compiled separately.Currently it used automatically when user calls transpile/transpilerModule functions and also it can be set via compiler API.
I'm making some progress getting the TypeScript tests running for SystemJS builder. Currently this issue and systemjs/builder#262 are the blocking issues as far as I can tell.
For the following input source running against the currently nightly:
The output from TypeScript is:
Note how the
./second.js
dependency is missing in the above.Just let me know if there is anything further I can do to help, really appreciate the work to get these workflows running.
The text was updated successfully, but these errors were encountered: