From 4a4e182256c080cc094ed23b1b4f2a5e7b9946e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Mon, 22 Jul 2019 12:05:16 +0200 Subject: [PATCH] build: add "acceptance" to tsconfig used by VSCode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miroslav Bajtoš --- tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index c6d681524147..3be550426d83 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,14 @@ { "extends": "./packages/build/config/tsconfig.common.json", "include": [ + "acceptance", "benchmark", "examples", "packages" ], "exclude": [ "node_modules/**", + "acceptance/node_modules/**", "benchmark/node_modules/**", "examples/*/node_modules/**", "packages/*/node_modules/**",