From 9982ce449ef1b0bda47dff9c66781d0c79c56256 Mon Sep 17 00:00:00 2001 From: rebornix Date: Thu, 7 Jul 2016 11:56:02 +0800 Subject: [PATCH] Fix TS2318 and ignore .vscode-test folder --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 1486a19efdf..1ed957ba7c8 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,10 @@ "experimentalDecorators": true }, "exclude": [ - "node_modules" + "node_modules", + ".vscode-test" + ], + "files": [ + "node_modules/typescript/lib/lib.es6.d.ts" ] }