From 463cc2d2b110d481ae44c48fabbe3901516b2713 Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Fri, 23 Feb 2024 13:10:58 -0500 Subject: [PATCH] Revert "Add missing modules common and types (#875)" This reverts commit ba9c4f66264eadb25e2f25b595e861454ad6b241. Signed-off-by: Derek Ho --- .opensearch_dashboards-plugin-helpers.json | 5 ++--- tsconfig.json | 11 +---------- 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/.opensearch_dashboards-plugin-helpers.json b/.opensearch_dashboards-plugin-helpers.json index d71679063..f79b1a27d 100644 --- a/.opensearch_dashboards-plugin-helpers.json +++ b/.opensearch_dashboards-plugin-helpers.json @@ -4,8 +4,7 @@ "tsconfig.json", "yarn.lock", ".yarnrc", - "{lib,public,server,webpackShims,translations,utils,models,test,common,types}/**/*", - "!__tests__", - "config.ts" + "{lib,public,server,webpackShims,translations,utils,models,test}/**/*", + "!__tests__" ] } diff --git a/tsconfig.json b/tsconfig.json index 5cdb1d22c..2bd480b10 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,16 +3,7 @@ "extends": "../../tsconfig.json", // tell the TypeScript compiler where to find your source files - "include": [ - "server/**/*", - "public/**/*", - "utils/**/*", - "models/**/*", - "test/**/*", - "common/**/*", - "types/**/*", - "config.ts" - ], + "include": ["server/**/*", "public/**/*", "utils/**/*", "models/**/*", "test/**/*"], "exclude": ["node_modules", "*/node_modules/"], "compilerOptions": { "skipLibCheck": true,