Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/keller-mark/reproduce-craco-issue


https://github.com/keller-mark/reproduce-craco-issue

Last synced: 12 days ago
JSON representation

Awesome Lists containing this project

README

        

Ensure `type: module` in package.json

Added this in `craco.config.js` `webpack` object:

```
configure: {
module: {
rules: [
{
test: /\.m?js/,
resolve: {
fullySpecified: false
}
},
],
},
},
```

Modify `package.json` `scripts.test`:

```
"test": "NODE_OPTIONS=--experimental-vm-modules craco test",
```

Node version: 20.2.0
NPM version: 9.6.6