From 5c576a4d4562f9df50d99ee684e395aedf11f227 Mon Sep 17 00:00:00 2001 From: Kawika Avilla Date: Fri, 9 Feb 2024 00:30:39 +0000 Subject: [PATCH] Add missing modules common and types Fails to start as these modules weren't getting compiled down and used. Issue: n/a Signed-off-by: Kawika Avilla --- .opensearch_dashboards-plugin-helpers.json | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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,