From c09757924a20b985947505a2671ff8a52d75e4ba Mon Sep 17 00:00:00 2001 From: Samiul Monir Date: Wed, 20 Nov 2024 18:35:27 -0500 Subject: [PATCH] fixing formatting issue in tsconfig file --- .../search_inference_endpoints/tsconfig.json | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/x-pack/plugins/search_inference_endpoints/tsconfig.json b/x-pack/plugins/search_inference_endpoints/tsconfig.json index 8e5f55db3e0db..9a5b160779e7a 100644 --- a/x-pack/plugins/search_inference_endpoints/tsconfig.json +++ b/x-pack/plugins/search_inference_endpoints/tsconfig.json @@ -1,9 +1,14 @@ { "extends": "../../../tsconfig.base.json", "compilerOptions": { - "outDir": "target/types" + "outDir": "target/types", }, - "include": ["__mocks__/**/*", "common/**/*", "public/**/*", "server/**/*"], + "include": [ + "__mocks__/**/*", + "common/**/*", + "public/**/*", + "server/**/*" + ], "kbn_references": [ "@kbn/config-schema", "@kbn/core", @@ -32,5 +37,7 @@ "@kbn/serverless", "@kbn/utility-types" ], - "exclude": ["target/**/*"] + "exclude": [ + "target/**/*", + ] }