From a28dc215af3146d827d4b2f46a3191e2d487efde Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 9 Nov 2016 14:14:31 -0800 Subject: [PATCH] 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 --- extensions/markdown/tsconfig.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/extensions/markdown/tsconfig.json b/extensions/markdown/tsconfig.json index 23671861401..a20cb4ee941 100644 --- a/extensions/markdown/tsconfig.json +++ b/extensions/markdown/tsconfig.json @@ -2,10 +2,9 @@ "compilerOptions": { "module": "commonjs", "target": "es5", - "outDir": "out", + "outDir": "./out", "noLib": true, - "sourceMap": true, - "rootDir": "." + "sourceMap": true }, "exclude": [ "node_modules"