From ac0e9227d4bbbec7619e4d1dc9a7b96da8104f5f Mon Sep 17 00:00:00 2001 From: Cameron Gilbert Date: Fri, 5 Jan 2024 13:56:53 -0500 Subject: [PATCH] fix: more reverts --- packages/nibijs/tsconfig.json | 9 ++++----- packages/nibijs/typedoc.json | 2 +- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/packages/nibijs/tsconfig.json b/packages/nibijs/tsconfig.json index 512d782e..93a2f478 100644 --- a/packages/nibijs/tsconfig.json +++ b/packages/nibijs/tsconfig.json @@ -1,18 +1,17 @@ { "extends": "../../tsconfig.json", "compilerOptions": { - "outDir": "./dist", "rootDir": "./src", + "outDir": "./dist", "baseUrl": "./", "paths": { "@nibiruchain/nibijs": ["./*"] - }, - "composite": true + } }, + "include": ["src/**/*"], "references": [ { "path": "../protojs" } - ], - "include": ["src/**/*"] + ] } diff --git a/packages/nibijs/typedoc.json b/packages/nibijs/typedoc.json index a628b4cc..4d2d7551 100644 --- a/packages/nibijs/typedoc.json +++ b/packages/nibijs/typedoc.json @@ -3,7 +3,7 @@ "name": "NibiJS Documentation", "excludeExternals": true, "includeVersion": true, - "entryPointStrategy": "expand", // "resolve", "expand", or "packages" + "entryPointStrategy": "expand", "entryDocument": "intro.md", "entryPoints": ["index.ts"] }