From 3bae4392e7c7d7d3bfc6eb52b1e587d49448d29a Mon Sep 17 00:00:00 2001 From: Yann Braga Date: Mon, 30 Sep 2024 17:09:32 +0200 Subject: [PATCH] add strict: false to addon test tsconfig (hopefully temporarily) --- code/addons/test/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/addons/test/tsconfig.json b/code/addons/test/tsconfig.json index e4e3d59266c..060b5d432fc 100644 --- a/code/addons/test/tsconfig.json +++ b/code/addons/test/tsconfig.json @@ -4,7 +4,8 @@ "rootDir": "../../../", "module": "Preserve", "moduleResolution": "Bundler", - "types": ["vitest"] + "types": ["vitest"], + "strict": false }, "include": ["src/**/*", "./typings.d.ts"] }