Skip to content

Commit a28dc21

Browse files
committed
Remove rootDir from the markdown ext's tsconfig
This was causing the output's folder structure to be based on the root of the vscode project. This bring it in line with the other bundled extensions. Fixes #15184
1 parent 6bfd1d8 commit a28dc21

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

extensions/markdown/tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
"compilerOptions": {
33
"module": "commonjs",
44
"target": "es5",
5-
"outDir": "out",
5+
"outDir": "./out",
66
"noLib": true,
7-
"sourceMap": true,
8-
"rootDir": "."
7+
"sourceMap": true
98
},
109
"exclude": [
1110
"node_modules"

0 commit comments

Comments
 (0)