Skip to content

Commit

Permalink
Revert "Revert "Add missing modules common and types (opensearch-proj…
Browse files Browse the repository at this point in the history
…ect#875)""

This reverts commit 17cff14.

Signed-off-by: Derek Ho <[email protected]>
  • Loading branch information
derek-ho committed Feb 28, 2024
1 parent 463cc2d commit c9fe6ff
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .opensearch_dashboards-plugin-helpers.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"tsconfig.json",
"yarn.lock",
".yarnrc",
"{lib,public,server,webpackShims,translations,utils,models,test}/**/*",
"!__tests__"
"{lib,public,server,webpackShims,translations,utils,models,test,common,types}/**/*",
"!__tests__",
"config.ts"
]
}
11 changes: 10 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,16 @@
"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/**/*",
"config.ts"
],
"exclude": ["node_modules", "*/node_modules/"],
"compilerOptions": {
"skipLibCheck": true,
Expand Down

0 comments on commit c9fe6ff

Please sign in to comment.