Skip to content

Commit

Permalink
feat: Source maps with inline sources for browser-telemetry. (#735)
Browse files Browse the repository at this point in the history
  • Loading branch information
kinyoklion authored Jan 16, 2025
1 parent 6ad7e51 commit 1656a85
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/telemetry/browser-telemetry/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"rootDir": ".",
"outDir": "dist",
"skipLibCheck": true,
"sourceMap": false,
"sourceMap": true,
"inlineSources": true,
"strict": true,
"stripInternal": true,
"target": "ES2018",
Expand Down
2 changes: 1 addition & 1 deletion packages/telemetry/browser-telemetry/tsup.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default defineConfig({
minify: true,
format: ['esm', 'cjs'],
splitting: false,
sourcemap: false,
sourcemap: true,
clean: true,
dts: true,
metafile: false,
Expand Down

0 comments on commit 1656a85

Please sign in to comment.