From 236e5bba2ebb5b80e483e2b2c298fd3c178b5849 Mon Sep 17 00:00:00 2001 From: Martin Dragnev Date: Wed, 25 Mar 2026 11:54:56 +0200 Subject: [PATCH] chore: update typedoc options to specify output JSON file --- tsconfig.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index b4eabb0..1681032 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -38,12 +38,11 @@ "exclude": ["node_modules/**"], "typedocOptions": { "entryPoints": ["src/index.ts"], - "out": "dist/docs", + "json": "dist/docs/igniteui-grid-lite.json", "exclude": "**/*+(.test|-fixture|-styles).ts", "excludePrivate": true, "excludeProtected": true, "excludeExternals": true, "excludeNotDocumented": true, - "disableSources": true } }