Skip to content

Commit 22f5cd1

Browse files
committed
fix(npm): fix type exports in package.json
1 parent 8f0c191 commit 22f5cd1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,12 +41,12 @@
4141
".": {
4242
"import": "./lib/index.qwik.mjs",
4343
"require": "./lib/index.qwik.cjs",
44-
"types": "./lib/types/index.qwik.d.ts"
44+
"types": "./lib/index.qwik.d.ts"
4545
},
4646
"./vite": {
4747
"import": "./lib/vite.mjs",
4848
"require": "./lib/vite.cjs",
49-
"types": "./lib/types/vite.d.ts"
49+
"types": "./lib/vite.d.ts"
5050
}
5151
},
5252
"files": [
@@ -65,5 +65,5 @@
6565
"type": "module",
6666
"main": "./lib/index.qwik.mjs",
6767
"qwik": "./lib/index.qwik.mjs",
68-
"types": "./lib/types/index.qwik.d.ts"
68+
"types": "./lib/index.qwik.d.ts"
6969
}

0 commit comments

Comments
 (0)