Skip to content

Commit 3579470

Browse files
committed
feat: Enable source maps with inlined sources.
1 parent 6ad7e51 commit 3579470

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/sdk/browser/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"rootDir": ".",
1212
"outDir": "dist",
1313
"skipLibCheck": true,
14-
"sourceMap": false,
14+
"sourceMap": true,
15+
"inlineSources": true,
1516
"strict": true,
1617
"stripInternal": true,
1718
"target": "ES2017",

packages/sdk/browser/tsup.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default defineConfig({
1010
minify: true,
1111
format: ['esm', 'cjs'],
1212
splitting: false,
13-
sourcemap: false,
13+
sourcemap: true,
1414
clean: true,
1515
noExternal: ['@launchdarkly/js-sdk-common', '@launchdarkly/js-client-sdk-common'],
1616
dts: true,

0 commit comments

Comments
 (0)