From 94dc242c23728739641cb10dd9ad6d7ecd4ddbee Mon Sep 17 00:00:00 2001 From: Nathan Kluth Date: Tue, 24 Oct 2023 14:21:27 -0600 Subject: [PATCH] fix: tsconfig include/exclude --- packages/ui/tsconfig.json | 11 ++++++++++- tsconfig.json | 11 +---------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/packages/ui/tsconfig.json b/packages/ui/tsconfig.json index b2baa0e..a7746cc 100644 --- a/packages/ui/tsconfig.json +++ b/packages/ui/tsconfig.json @@ -3,5 +3,14 @@ "compilerOptions": { "jsx": "react-jsx", "outDir": "./dist" - } + }, + "include": [ + "**/*.ts", + "**/*.tsx", + ], + "exclude": [ + "node_modules", + "dist", + ".storybook" + ] } \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 704deee..7e9a28f 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -13,14 +13,5 @@ "esModuleInterop": true, "module": "CommonJS", "moduleResolution": "node" - }, - "include": [ - "**/*.ts", - "**/*.tsx", - ], - "exclude": [ - "node_modules", - "dist", - ".storybook" - ] + } }