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
Right now for a mono repository configuring typescript projects properly and running tsc is mandatory to setup.
For a single package repository running tsc is not mandatory right now, as it uses rollup directly.
We should unify both ways (and remove bundling altogether see #48).
As discussed with @kamilkisiela we wanna do it the following way:
When running bob build it should run tsc and before doing so validate whether the tsconfig is properly set up for what we do.
bob build runs tsc twice. Once for regular commonjs (modules: cjs) and once for esm (modules: node16).
After running tsc bob build should make sure all the files are moved to the right place (e.g. what already happens today).
The text was updated successfully, but these errors were encountered:
Right now for a mono repository configuring typescript projects properly and running
tsc
is mandatory to setup.For a single package repository running
tsc
is not mandatory right now, as it uses rollup directly.We should unify both ways (and remove bundling altogether see #48).
As discussed with @kamilkisiela we wanna do it the following way:
When running bob build it should run tsc and before doing so validate whether the tsconfig is properly set up for what we do.
bob build runs tsc twice. Once for regular commonjs (modules: cjs) and once for esm (modules: node16).
After running tsc bob build should make sure all the files are moved to the right place (e.g. what already happens today).
The text was updated successfully, but these errors were encountered: