Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/keller-mark/reproduce-craco-issue
https://github.com/keller-mark/reproduce-craco-issue
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/keller-mark/reproduce-craco-issue
- Owner: keller-mark
- Created: 2023-08-11T00:53:10.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-06T15:49:27.000Z (over 1 year ago)
- Last Synced: 2024-11-13T06:22:01.433Z (2 months ago)
- Language: JavaScript
- Size: 268 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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