|
147 | 147 | },
|
148 | 148 | "typesVersions": {
|
149 | 149 | "*": {
|
150 |
| - "adapters/*": [ |
151 |
| - "./dist/types/exports/adapters/*.d.ts" |
152 |
| - ], |
153 |
| - "auth": [ |
154 |
| - "./dist/types/exports/auth.d.ts" |
155 |
| - ], |
156 |
| - "chains": [ |
157 |
| - "./dist/types/exports/chains.d.ts" |
158 |
| - ], |
159 |
| - "contract": [ |
160 |
| - "./dist/types/exports/contract.d.ts" |
161 |
| - ], |
162 |
| - "deploys": [ |
163 |
| - "./dist/types/exports/deploys.d.ts" |
164 |
| - ], |
165 |
| - "event": [ |
166 |
| - "./dist/types/exports/event.d.ts" |
167 |
| - ], |
168 |
| - "extensions/*": [ |
169 |
| - "./dist/types/exports/extensions/*.d.ts" |
170 |
| - ], |
171 |
| - "pay": [ |
172 |
| - "./dist/types/exports/pay.d.ts" |
173 |
| - ], |
174 |
| - "react": [ |
175 |
| - "./dist/types/exports/react.d.ts" |
176 |
| - ], |
177 |
| - "react-native": [ |
178 |
| - "./dist/types/exports/react.native.d.ts" |
179 |
| - ], |
180 |
| - "rpc": [ |
181 |
| - "./dist/types/exports/rpc.d.ts" |
182 |
| - ], |
183 |
| - "storage": [ |
184 |
| - "./dist/types/exports/storage.d.ts" |
185 |
| - ], |
186 |
| - "transaction": [ |
187 |
| - "./dist/types/exports/transaction.d.ts" |
188 |
| - ], |
189 |
| - "utils": [ |
190 |
| - "./dist/types/exports/utils.d.ts" |
191 |
| - ], |
192 |
| - "wallets": [ |
193 |
| - "./dist/types/exports/wallets.d.ts" |
194 |
| - ], |
195 |
| - "wallets/*": [ |
196 |
| - "./dist/types/exports/wallets/*.d.ts" |
197 |
| - ], |
198 |
| - "modules": [ |
199 |
| - "./dist/types/exports/modules.d.ts" |
200 |
| - ], |
201 |
| - "social": [ |
202 |
| - "./dist/types/exports/social.d.ts" |
203 |
| - ], |
204 |
| - "ai": [ |
205 |
| - "./dist/types/exports/ai.d.ts" |
206 |
| - ], |
207 |
| - "bridge": [ |
208 |
| - "./dist/types/exports/bridge.d.ts" |
209 |
| - ] |
| 150 | + "adapters/*": ["./dist/types/exports/adapters/*.d.ts"], |
| 151 | + "auth": ["./dist/types/exports/auth.d.ts"], |
| 152 | + "chains": ["./dist/types/exports/chains.d.ts"], |
| 153 | + "contract": ["./dist/types/exports/contract.d.ts"], |
| 154 | + "deploys": ["./dist/types/exports/deploys.d.ts"], |
| 155 | + "event": ["./dist/types/exports/event.d.ts"], |
| 156 | + "extensions/*": ["./dist/types/exports/extensions/*.d.ts"], |
| 157 | + "pay": ["./dist/types/exports/pay.d.ts"], |
| 158 | + "react": ["./dist/types/exports/react.d.ts"], |
| 159 | + "react-native": ["./dist/types/exports/react.native.d.ts"], |
| 160 | + "rpc": ["./dist/types/exports/rpc.d.ts"], |
| 161 | + "storage": ["./dist/types/exports/storage.d.ts"], |
| 162 | + "transaction": ["./dist/types/exports/transaction.d.ts"], |
| 163 | + "utils": ["./dist/types/exports/utils.d.ts"], |
| 164 | + "wallets": ["./dist/types/exports/wallets.d.ts"], |
| 165 | + "wallets/*": ["./dist/types/exports/wallets/*.d.ts"], |
| 166 | + "modules": ["./dist/types/exports/modules.d.ts"], |
| 167 | + "social": ["./dist/types/exports/social.d.ts"], |
| 168 | + "ai": ["./dist/types/exports/ai.d.ts"], |
| 169 | + "bridge": ["./dist/types/exports/bridge.d.ts"] |
210 | 170 | }
|
211 | 171 | },
|
212 | 172 | "browser": {
|
|
330 | 290 | "knip": "knip",
|
331 | 291 | "build:generate": "bun scripts/generate/generate.ts",
|
332 | 292 | "build:generate-wallets": "bun scripts/wallets/generate.ts",
|
333 |
| - "dev": "tsc --project ./tsconfig.build.json --module es2020 --outDir ./dist/esm --watch", |
| 293 | + "dev": "tsc --project ./tsconfig.build.json --module nodenext --moduleResolution nodenext --outDir ./dist/esm --watch", |
334 | 294 | "dev:cjs": "printf '{\"type\":\"commonjs\"}' > ./dist/cjs/package.json && tsc --noCheck --project ./tsconfig.build.json --module commonjs --outDir ./dist/cjs --verbatimModuleSyntax false --watch",
|
335 | 295 | "dev:esm": "printf '{\"type\": \"module\",\"sideEffects\":false}' > ./dist/esm/package.json && tsc --noCheck --project ./tsconfig.build.json --module es2020 --outDir ./dist/esm --watch",
|
336 | 296 | "build": "pnpm clean && pnpm build:types && pnpm build:cjs && pnpm build:esm",
|
|
0 commit comments