From 6bd3949a07cd202a836db85b40b267daee4224c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Thu, 1 Feb 2024 13:07:08 +0100 Subject: [PATCH] chore: update tsconfig MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ --- tsconfig.eslint.json | 3 ++- tsconfig.json | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 7ad7cd2..0b18f83 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -2,6 +2,7 @@ "extends": "./tsconfig.json", "exclude": ["node_modules"], "include": [ - "**/*.test.ts" + "src/**/*.ts", + "src/*.ts", ] } diff --git a/tsconfig.json b/tsconfig.json index 0e02fb2..653fdfe 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,5 +8,8 @@ "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ }, - "exclude": ["node_modules", "**/*.test.ts"] + "exclude": [ + "node_modules", + "**/*.test.ts", + ], }