From 7a76e0135e150326f79499a235d5ffdee0e710d5 Mon Sep 17 00:00:00 2001 From: restrry Date: Mon, 7 Sep 2020 17:50:39 +0200 Subject: [PATCH] disable incremental builds for public type generation. They generate non-deterministic types https://github.com/microsoft/rushstack/issues/1958 --- tsconfig.types.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.types.json b/tsconfig.types.json index e8cd0a5209bbe..4b7dfa2d014a3 100644 --- a/tsconfig.types.json +++ b/tsconfig.types.json @@ -1,6 +1,7 @@ { "extends": "./tsconfig.base.json", "compilerOptions": { + "incremental": false, "declaration": true, "outDir": "./target/types", "stripInternal": false,