Skip to content

Commit

Permalink
updated ts config and related file (#882)
Browse files Browse the repository at this point in the history
Signed-off-by: Amardeepsingh Siglani <[email protected]>
  • Loading branch information
amsiglan authored Feb 13, 2024
1 parent 7e57820 commit 7b2a6f6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .opensearch_dashboards-plugin-helpers.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"yarn.lock",
".yarnrc",
"{lib,public,server,webpackShims,translations,utils,models,test,common,types}/**/*",
"!__tests__"
"!__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/**/*", "common/**/*", "types/**/*"],
"include": [
"server/**/*",
"public/**/*",
"utils/**/*",
"models/**/*",
"test/**/*",
"common/**/*",
"types/**/*",
"config.ts"
],
"exclude": ["node_modules", "*/node_modules/"],
"compilerOptions": {
"skipLibCheck": true,
Expand Down

0 comments on commit 7b2a6f6

Please sign in to comment.