Skip to content

Commit 88d9956

Browse files
committed
Don’t skip VSCode related packages while debugging
It can be useful to step into them.
1 parent 004b802 commit 88d9956

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.vscode/launch.json

+1-5
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,7 @@
1717
"${workspaceFolder}/fixtures/fixtures.code-workspace"
1818
],
1919
"outFiles": ["${workspaceFolder}/packages/vscode-mdx/out/**/*.js"],
20-
"skipFiles": [
21-
"<node_internals>/**",
22-
"**/node_modules/vscode-*/**",
23-
"**/typescript/**"
24-
],
20+
"skipFiles": ["<node_internals>/**", "**/typescript/**"],
2521
"preLaunchTask": "build"
2622
}
2723
]

0 commit comments

Comments
 (0)