From e3e675383f5ffa236994bb423402dd9fed42e85e Mon Sep 17 00:00:00 2001 From: Oscar Hinton Date: Tue, 5 Nov 2024 11:40:47 +0100 Subject: [PATCH] Fix locale test after typescript upgrade (#11859) The TypeScript update broke locale tests, to fix this we need to define moduleResolution manually as mentioned in the TS changelog. --- scripts/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tsconfig.json b/scripts/tsconfig.json index 018fb13393..96870175b5 100644 --- a/scripts/tsconfig.json +++ b/scripts/tsconfig.json @@ -3,6 +3,7 @@ "compilerOptions": { "outDir": "dist", "module": "NodeNext", + "moduleResolution": "NodeNext", "target": "ESNext" }, "include": ["*.ts"]