Uh oh!
There was an error while loading. Please reload this page.
Implement export as namespace from - #34903
Conversation
ExE-Boss
commented
Nov 8, 2019
This only addresses half of #4813. The other half being |
Kingwl
commented
Dec 4, 2019
up🙆🏻♂️ |
Kingwl
commented
Dec 9, 2019
Could we get this down in 3.8?🤔 |
weswigham
commented
Dec 9, 2019
@Kingwl can ya sync it with |
DanielRosenwasser
commented
Dec 20, 2019
@typescript-bot pack this |
DanielRosenwasser
commented
Dec 20, 2019
I merged from master to fix conflicts, and I switched some of your tests to target multiple One thing I noticed was that you need a transform for |
weswigham
commented
Dec 20, 2019
@typescript-bot pack this again now that it's up to date |
| export var a = 1; | ||
| export var b = 2; | ||
| //// [1.js] | ||
| export * as ns from './0'; |
There was a problem hiding this comment.
This needs to be transformed into something like
import*as_nsfrom'./0';export{_nsasns};DanielRosenwasser
commented
Dec 20, 2019
I implemented |
DanielRosenwasser
commented
Dec 20, 2019
@typescript-bot pack this |
Heya @DanielRosenwasser, I've started to run the tarball bundle task on this PR at ed4f9b5. You can monitor the build here. It should now contribute to this PR's status checks. |
typescript-bot
commented
Dec 20, 2019
Hey @DanielRosenwasser, I've packed this into an installable tgz. You can install it for testing by referencing it in your and then running |
DanielRosenwasser
commented
Dec 21, 2019
Thank you!! |
Fixes (a part of) #4813