From efb5b0edb92c7db603748d02be9d8e0b4de4bbf0 Mon Sep 17 00:00:00 2001 From: Haixing <65376724+HaixingOoO@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:44:16 +0800 Subject: [PATCH] chore: fix tsconfig.json test-utils (#3285) Co-authored-by: Heising --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 44897e1da6..b0369d6f6c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,8 +23,8 @@ "downlevelIteration": true, "esModuleInterop": true }, - "include": ["./src", "./globals.d.ts","./test/config/index.d.ts"], - "exclude": ["**/*.jsx", "**/**/_usage/*", "**/**/__tests__/*", "node_modules", "src/_common", "dist", "lib", "esm", "cjs", "es"], + "include": ["./src", "./globals.d.ts", "./test/config/index.d.ts", "**/**/__tests__/*"], + "exclude": ["**/*.jsx", "**/**/_usage/*", "node_modules", "src/_common", "dist", "lib", "esm", "cjs", "es"], "types": [ "node", "jest",