diff --git a/.opensearch_dashboards-plugin-helpers.json b/.opensearch_dashboards-plugin-helpers.json index f79b1a27d..1cf4095da 100644 --- a/.opensearch_dashboards-plugin-helpers.json +++ b/.opensearch_dashboards-plugin-helpers.json @@ -4,7 +4,7 @@ "tsconfig.json", "yarn.lock", ".yarnrc", - "{lib,public,server,webpackShims,translations,utils,models,test}/**/*", + "{lib,public,server,webpackShims,translations,utils,models,test,common,types}/**/*", "!__tests__" ] } diff --git a/tsconfig.json b/tsconfig.json index 2bd480b10..4d30d64c6 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "extends": "../../tsconfig.json", // tell the TypeScript compiler where to find your source files - "include": ["server/**/*", "public/**/*", "utils/**/*", "models/**/*", "test/**/*"], + "include": ["server/**/*", "public/**/*", "utils/**/*", "models/**/*", "test/**/*", "common/**/*", "types/**/*"], "exclude": ["node_modules", "*/node_modules/"], "compilerOptions": { "skipLibCheck": true,