Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d1479c2

Browse files
stainless-app[bot]meorphis
authored and
meorphis
committedMar 19, 2025
chore(exports): stop using path fallbacks (#1397)
1 parent 26b0856 commit d1479c2

File tree

1 file changed

+7
-28
lines changed

1 file changed

+7
-28
lines changed
 

‎package.json

+7-28
Original file line numberDiff line numberDiff line change
@@ -112,38 +112,17 @@
112112
"default": "./dist/index.mjs"
113113
},
114114
"./*.mjs": {
115-
"types": [
116-
"./dist/*.d.ts",
117-
"./dist/*/index.d.ts"
118-
],
119-
"default": [
120-
"./dist/*.mjs",
121-
"./dist/*/index.mjs"
122-
]
115+
"types": "./dist/*.d.ts",
116+
"default": "./dist/*.mjs"
123117
},
124118
"./*.js": {
125-
"types": [
126-
"./dist/*.d.ts",
127-
"./dist/*/index.d.ts"
128-
],
129-
"default": [
130-
"./dist/*.js",
131-
"./dist/*/index.js"
132-
]
119+
"types": "./dist/*.d.ts",
120+
"default": "./dist/*.js"
133121
},
134122
"./*": {
135-
"types": [
136-
"./dist/*.d.ts",
137-
"./dist/*/index.d.ts"
138-
],
139-
"require": [
140-
"./dist/*.js",
141-
"./dist/*/index.js"
142-
],
143-
"default": [
144-
"./dist/*.mjs",
145-
"./dist/*/index.mjs"
146-
]
123+
"types": "./dist/*.d.ts",
124+
"require": "./dist/*.js",
125+
"default": "./dist/*.mjs"
147126
}
148127
},
149128
"bin": "./bin/cli",

0 commit comments

Comments
 (0)
Please sign in to comment.