From c2448df31e3d54c49887ad0646deb18fb606ba39 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Thu, 18 Jul 2024 16:34:21 -0400 Subject: [PATCH] chore: exclude jest.config.ts in tsconfig Signed-off-by: Rui Chen --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a0724f0..df4369e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -60,5 +60,5 @@ // "experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */ // "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */ }, - "exclude": ["node_modules", "**/*.test.ts"] -} \ No newline at end of file + "exclude": ["node_modules", "**/*.test.ts", "jest.config.ts"] +}