From 1d192bb4f0c0ec1f301910735e9feb86efbd01f9 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Mon, 1 Oct 2018 16:39:37 -0700 Subject: [PATCH] Onboard markdown to use shared tsconfig --- .../markdown-language-features/tsconfig.json | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/extensions/markdown-language-features/tsconfig.json b/extensions/markdown-language-features/tsconfig.json index b0c5b388eeb..ec7424a405c 100644 --- a/extensions/markdown-language-features/tsconfig.json +++ b/extensions/markdown-language-features/tsconfig.json @@ -1,20 +1,13 @@ { + "extends": "../shared.tsconfig.json", "compilerOptions": { - "module": "commonjs", - "target": "es2017", + "outDir": "./out", + "experimentalDecorators": true, "lib": [ "es6", "es2015.promise", "dom" - ], - "outDir": "./out", - "sourceMap": true, - "noImplicitAny": true, - "noImplicitReturns": true, - "noUnusedLocals": true, - "noUnusedParameters": true, - "strict": true, - "alwaysStrict": true + ] }, "include": [ "src/**/*" -- GitLab