From 0ef2ced8609cf56bb0c7198fa5c02f676850b0e2 Mon Sep 17 00:00:00 2001 From: Tiago Yamamoto Date: Mon, 15 Dec 2025 10:08:48 -0300 Subject: [PATCH] fix: add explicit types array to fix babel__core type error --- backoffice/tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/backoffice/tsconfig.json b/backoffice/tsconfig.json index aba29b0..b0d9f65 100644 --- a/backoffice/tsconfig.json +++ b/backoffice/tsconfig.json @@ -1,5 +1,10 @@ { "compilerOptions": { + "types": [ + "node", + "jest", + "express" + ], "module": "nodenext", "moduleResolution": "nodenext", "resolvePackageJsonExports": true, @@ -22,4 +27,4 @@ "strictBindCallApply": false, "noFallthroughCasesInSwitch": false } -} +} \ No newline at end of file