fix: named esm import
This commit is contained in:
parent
37331a4869
commit
5f13b22150
1 changed files with 8 additions and 2 deletions
10
package.json
10
package.json
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "it-fsm",
|
"name": "it-fsm",
|
||||||
"version": "2.0.2",
|
"version": "2.0.3",
|
||||||
"description": "Simple finite state machine for nodejs",
|
"description": "Simple finite state machine for nodejs",
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -40,5 +40,11 @@
|
||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"sideEffects": false,
|
"sideEffects": false,
|
||||||
"files": ["dist"]
|
"files": ["dist"],
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"require": "./dist/cjs/fsm.js",
|
||||||
|
"import": "./dist/esm/fsm.js"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue