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,