From 91102a6566eb15225871f3c6ea4149785865e002 Mon Sep 17 00:00:00 2001 From: Maciej Pyrc Date: Sat, 29 Jun 2024 17:09:15 +0200 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20linter=20and=20typechec?= =?UTF-8?q?ker=20adjustments?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ea381bd..790702f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,9 +20,9 @@ "strict": true, "noFallthroughCasesInSwitch": true, "resolveJsonModule": true, - "isolatedModules": true, + "isolatedModules": false, "noEmit": true }, - "include": ["src"], - "exclude": ["node_modules", "build", "dist", "rollup.config.mjs", "__tests__"] + "include": ["src", "__tests__"], + "exclude": ["node_modules", "build", "dist", "rollup.config.mjs"] }