From 3c68a0c8108804506e4abec933167f83878d5a28 Mon Sep 17 00:00:00 2001 From: spalger Date: Tue, 8 Jun 2021 13:30:42 -0700 Subject: [PATCH] [xpack/test] restore incremental: false in ts project --- x-pack/test/tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/x-pack/test/tsconfig.json b/x-pack/test/tsconfig.json index 0424891064cd..be7d9221e7ab 100644 --- a/x-pack/test/tsconfig.json +++ b/x-pack/test/tsconfig.json @@ -6,7 +6,9 @@ "emitDeclarationOnly": true, "declaration": true, "declarationMap": true, - "types": ["node"] + "types": ["node"], + // overhead is too significant + "incremental": false, }, "include": [ "**/*",