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
This commit is contained in:
Daniel Imms
2016-11-09 14:14:31 -08:00
parent 6bfd1d8632
commit a28dc215af

View File

@@ -2,10 +2,9 @@
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "out",
"outDir": "./out",
"noLib": true,
"sourceMap": true,
"rootDir": "."
"sourceMap": true
},
"exclude": [
"node_modules"