From e0c4ca71a12179fb042e6622845fb757c2ac0fdc Mon Sep 17 00:00:00 2001 From: ttsukagoshi Date: Wed, 7 Feb 2024 06:17:05 +0900 Subject: [PATCH] Add `./jest.config.js` to `include` --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 2b3161e..df200a4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -106,5 +106,5 @@ // "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */ "skipLibCheck": true /* Skip type checking all .d.ts files. */ }, - "include": ["src/**/*.ts"] + "include": ["src/**/*.ts", "./jest.config.js"] }