Skip to content

Commit

Permalink
Add missing modules common and types (#875)
Browse files Browse the repository at this point in the history
Fails to start as these modules weren't getting compiled down
and used.

Issue:
n/a

Signed-off-by: Kawika Avilla <kavilla414@gmail.com>
(cherry picked from commit ba9c4f6)
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Feb 9, 2024
1 parent 8ac7b2d commit 03eb0fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .opensearch_dashboards-plugin-helpers.json
Original file line number Diff line number Diff line change
Expand Up @@ -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__"
]
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 03eb0fe

Please sign in to comment.