We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263bb4b commit 092a2afCopy full SHA for 092a2af
packages/sveltekit/package.json
@@ -13,6 +13,13 @@
13
"module": "build/esm/index.server.js",
14
"browser": "build/esm/index.client.js",
15
"types": "build/types/index.types.d.ts",
16
+ "exports": {
17
+ ".": {
18
+ "browser": "./build/esm/index.client.js",
19
+ "node": "./build/esm/index.server.js",
20
+ "default": "./build/cjs/index.server.js"
21
+ }
22
+ },
23
"publishConfig": {
24
"access": "public"
25
},
packages/sveltekit/src/client/index.ts
@@ -1,4 +1,6 @@
1
export * from '@sentry/svelte';
2
3
+export { wrapHandleError } from './handleError';
4
+
5
// Just here so that eslint is happy until we export more stuff here
6
export const PLACEHOLDER_CLIENT = 'PLACEHOLDER';
0 commit comments