From b7de1e55dcdea53d2acf1e16bfe2389b36f17311 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Wed, 14 Feb 2024 04:51:22 +0530 Subject: [PATCH] updated ts config and related file (#882) (#884) (cherry picked from commit 7b2a6f631e42962daff544200a69549e8d2bf70f) Signed-off-by: Amardeepsingh Siglani Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- .opensearch_dashboards-plugin-helpers.json | 3 ++- tsconfig.json | 11 ++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) 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,