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
Now, each package puts everything in 'src/', so we'd want to actually move the files out of there and into the package root.
This same thing should be possible when using the CJS bundle. I'm not sure the best way to accomplish that, but I think we can look at RxJS as an example, because I believe it allows this. It doesn'tbundle itself for CJS, however (it just compiles via TypeScript), which means our Rollup configuration may be limited to generating UMD bundles for browser use. We could then just use @babel/cli to transpile for CJS.
The text was updated successfully, but these errors were encountered:
I had enabled this because it:
But it's plainly inconvenient:
where it'd be nicer to just:
Now, each package puts everything in 'src/', so we'd want to actually move the files out of there and into the package root.
This same thing should be possible when using the CJS bundle. I'm not sure the best way to accomplish that, but I think we can look at RxJS as an example, because I believe it allows this. It doesn't bundle itself for CJS, however (it just compiles via TypeScript), which means our Rollup configuration may be limited to generating UMD bundles for browser use. We could then just use
@babel/cli
to transpile for CJS.The text was updated successfully, but these errors were encountered: