Skip to content

Commit fdcd6e2

Browse files
chore(exports): stop using path fallbacks (#114)
1 parent 9ac3180 commit fdcd6e2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,17 @@
113113
"default": "./dist/index.mjs"
114114
},
115115
"./*.mjs": {
116-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
117-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
116+
"types": "./dist/*.d.ts",
117+
"default": "./dist/*.mjs"
118118
},
119119
"./*.js": {
120-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
121-
"default": ["./dist/*.js", "./dist/*/index.js"]
120+
"types": "./dist/*.d.ts",
121+
"default": "./dist/*.js"
122122
},
123123
"./*": {
124-
"types": ["./dist/*.d.ts", "./dist/*/index.d.ts"],
125-
"require": ["./dist/*.js", "./dist/*/index.js"],
126-
"default": ["./dist/*.mjs", "./dist/*/index.mjs"]
124+
"types": "./dist/*.d.ts",
125+
"require": "./dist/*.js",
126+
"default": "./dist/*.mjs"
127127
}
128128
}
129129
}

0 commit comments

Comments
 (0)