chore: add index.js
This commit is contained in:
parent
813c277445
commit
00cc98dc8c
2 changed files with 6 additions and 0 deletions
|
@ -5,6 +5,10 @@
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"exports": {
|
"exports": {
|
||||||
".": {
|
".": {
|
||||||
|
"types": "./index.d.ts",
|
||||||
|
"import": "./index.js"
|
||||||
|
},
|
||||||
|
"./WebComponent": {
|
||||||
"types": "./WebComponent.d.ts",
|
"types": "./WebComponent.d.ts",
|
||||||
"import": "./WebComponent.js"
|
"import": "./WebComponent.js"
|
||||||
},
|
},
|
||||||
|
|
2
src/index.js
Normal file
2
src/index.js
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
export {attachEffect} from './attach-effect.js';
|
||||||
|
export {WebComponent} from './WebComponent.js';
|
Loading…
Reference in a new issue