From 407400deded2646a7c7141adbb6b8180c3dbe46a Mon Sep 17 00:00:00 2001 From: Simon Boudrias Date: Sun, 15 Sep 2024 16:45:44 -0400 Subject: [PATCH] Chore: Make sure turbo consider new TS version when recompiling --- turbo.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index c7c97f3f2..793d9e514 100644 --- a/turbo.json +++ b/turbo.json @@ -8,7 +8,12 @@ "tsc": { "dependsOn": ["^tsc"], "outputs": ["dist/**"], - "inputs": ["$TURBO_DEFAULT$", "../../tools/fix-ext.mjs", "../../tsconfig.json"] + "inputs": [ + "$TURBO_DEFAULT$", + "../../tools/fix-ext.mjs", + "../../tsconfig.json", + "../../package.json" + ] } } }