Is there something like:
export * as * from 'myJavaScriptFile.js'
I seem to want
"A way to export all variables which are exported from a file to be re-exported from another file - not with a new reference but whatever reference it was exported in the first place"
NOT like below: because there is a new reference(allStuff)
import default, * as allStuff from 'myJavaScriptFile.js';
export { allStuff };