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