From a0f5932e28bbeba05d2749bba7b5fcc27c525280 Mon Sep 17 00:00:00 2001 From: Phil Date: Sat, 13 Apr 2024 22:43:11 -0700 Subject: [PATCH] Fix tsconfig --- tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index c497334..1469f8c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,10 +12,9 @@ "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true, + "noEmit": true, // keep as true if you're only using TypeScript for type-checking "jsx": "react-jsx" }, - "include": ["src/**/*", "tests/**/*"], - "exclude": ["node_modules"], - "files": ["dist/**/*"], + "include": ["src/**/*"], // include all files in src + "exclude": ["node_modules"] // standard exclude }