Skip to content

Commit d2d740e

Browse files
committed
chore: try to fix modules issue
Signed-off-by: Christian Stewart <[email protected]>
1 parent ae58ea6 commit d2d740e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@aptre/flex-layout",
33
"author": "Caplin Systems Ltd",
44
"description": "A multi-tab docking layout manager",
5-
"version": "0.3.0-beta.3",
5+
"version": "0.3.0-beta.4",
66
"license": "ISC",
77
"repository": {
88
"type": "git",
@@ -31,8 +31,9 @@
3131
"types": "./dist/index.d.ts",
3232
"exports": {
3333
".": {
34+
"types": "./dist/index.d.ts",
3435
"import": "./dist/index.mjs",
35-
"types": "./dist/index.d.ts"
36+
"default": "./dist/index.mjs"
3637
},
3738
"./style": "./style/",
3839
"./style/_base.scss": "./style/_base.scss",

tsconfig.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"outDir": "./dist/",
44
"sourceMap": true,
55
"noImplicitAny": true,
6-
"module": "ES2020",
6+
"module": "ESNext",
77
"target": "ES2022",
8-
"moduleResolution": "bundler",
8+
"moduleResolution": "node",
99
"stripInternal": true,
1010
"alwaysStrict": true,
1111
"forceConsistentCasingInFileNames": true,

0 commit comments

Comments
 (0)