From fd2b240d9aa54f0f7a647e14f1866ce6f3cb872a Mon Sep 17 00:00:00 2001 From: Brandon Rising Date: Wed, 28 Jun 2023 17:26:54 -0400 Subject: [PATCH] Move all includes and excludes to single file --- invokeai/frontend/web/tsconfig.json | 2 -- invokeai/frontend/web/tsconfig.node.json | 8 ++++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/invokeai/frontend/web/tsconfig.json b/invokeai/frontend/web/tsconfig.json index 8276f461eb..e3ec9c0860 100644 --- a/invokeai/frontend/web/tsconfig.json +++ b/invokeai/frontend/web/tsconfig.json @@ -20,7 +20,5 @@ "*": ["./src/*"] } }, - "include": ["src/**/*.ts", "src/**/*.tsx", "*.d.ts"], - "exclude": ["src/services/fixtures/*", "node_modules", "dist"], "references": [{ "path": "./tsconfig.node.json" }] } diff --git a/invokeai/frontend/web/tsconfig.node.json b/invokeai/frontend/web/tsconfig.node.json index 3fa58ad1d1..139979f70d 100644 --- a/invokeai/frontend/web/tsconfig.node.json +++ b/invokeai/frontend/web/tsconfig.node.json @@ -10,6 +10,10 @@ "./config/vite.app.config.ts", "./config/vite.package.config.ts", "./config/vite.common.config.ts", - "./config/common.ts" - ] + "./config/common.ts", + "src/**/*.ts", + "src/**/*.tsx", + "*.d.ts" + ], + "exclude": ["src/services/fixtures/*", "node_modules", "dist"] }