Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Commit e78511a

Browse files
committed
chore: enable sourcemaps for debugging
1 parent 9ce1946 commit e78511a

3 files changed

Lines changed: 5 additions & 1 deletion

File tree

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"request": "launch",
6363
"name": "Debug Pull languages",
6464
"program": "${workspaceFolder}/dist/index.mjs",
65-
"args": ["languages", "pull", "--space", "2950182323", "--path", ".storyblok"],
65+
"args": ["languages", "pull", "--space", "295018"],
6666
"cwd": "${workspaceFolder}",
6767
"console": "integratedTerminal",
6868
"sourceMaps": true,

build.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ export default defineBuildConfig({
44
declaration: true,
55
entries: ['./src/index'],
66
failOnWarn: false,
7+
sourcemap: true,
78
});

tsconfig.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@
1313
"noFallthroughCasesInSwitch": true,
1414
"noUnusedLocals": true,
1515
"noUnusedParameters": true,
16+
"inlineSourceMap": false,
1617
"noEmit": true,
18+
/* Debugging */
19+
"sourceMap": true,
1720
"allowSyntheticDefaultImports": true,
1821
"esModuleInterop": true,
1922
"isolatedModules": true,

0 commit comments

Comments
 (0)