From 32a9c9b6a39b601c94e671fb7dbdd27719113d88 Mon Sep 17 00:00:00 2001 From: ttsukagoshi Date: Wed, 7 Feb 2024 22:42:14 +0900 Subject: [PATCH] Add `./jest.config.js` to `include` in tsconfig.json --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index d52bccb..7cf60fd 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", "tests/**/*.ts"] + "include": ["src/**/*.ts", "tests/**/*.ts", "./jest.config.js"] }