Skip to content

Commit 3baa348

Browse files
committed
Fix build issues
1 parent 478c38c commit 3baa348

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "coldbox-vite-plugin",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "ColdBox plugin for Vite.",
55
"keywords": [
66
"coldbox",
@@ -16,13 +16,13 @@
1616
"author": "Eric Peterson <[email protected]>",
1717
"exports": {
1818
".": {
19+
"types": "./dist/index.d.ts",
1920
"import": "./dist/index.mjs",
20-
"require": "./dist/index.cjs",
21-
"types": "./dist/index.d.ts"
21+
"require": "./dist/index.cjs"
2222
},
2323
"./inertia-helpers": {
24-
"import": "./inertia-helpers/index.js",
2524
"types": "./inertia-helpers/index.d.ts",
25+
"import": "./inertia-helpers/index.js",
2626
"node": "./inertia-helpers/index.js"
2727
}
2828
},

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"outDir": "./dist",
44
"target": "ES2020",
55
"module": "es2020",
6-
"moduleResolution": "node",
6+
"moduleResolution": "bundler",
77
"resolveJsonModule": true,
88
"strict": true,
99
"declaration": true,

0 commit comments

Comments
 (0)