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
To be able to remove this dependency, we must first publish compiled JS files that are Node.js "native" compliant, which is not the case today because the import statements don't have .js extensions (among other issues).
for each package:
either add .js to TypeScript imports or use a bundler like microbundle or tsup
Special case for the web package first needs some refactoring to be able to output compliant code:
dissociate the code that wraps Next.js calls of the Next.js codebase itself
extract the code shared between the 2 codebases to the core package (or other)
separate the two codebases
make two distinct build commands
reset the Next.js tsconfig.json
The text was updated successfully, but these errors were encountered:
Blocks #135 (because of standard-things/esm#931)
To be able to remove this dependency, we must first publish compiled JS files that are Node.js "native" compliant, which is not the case today because the
import
statements don't have.js
extensions (among other issues)..js
to TypeScript imports or use a bundler like microbundle or tsupSpecial case for the
web
package first needs some refactoring to be able to output compliant code:core
package (or other)tsconfig.json
The text was updated successfully, but these errors were encountered: