From 176bc409d7352ef12c05e859627b46fd2aba46ad Mon Sep 17 00:00:00 2001
From: thepaperpilot <thepaperpilot@gmail.com>
Date: Tue, 8 Mar 2022 00:24:47 -0600
Subject: [PATCH] Added typedoc config

---
 tsconfig.json | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/tsconfig.json b/tsconfig.json
index e1c9ec5..5106f23 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -35,5 +35,15 @@
   ],
   "exclude": [
     "node_modules"
-  ]
+  ],
+  "typedocOptions": {
+      "entryPoints": ["src"],
+      "entryPointStrategy": "expand",
+      "cleanOutputDir": true,
+      "name": "Profectus",
+      "includeVersion": true,
+      "categorizeByGroup": false,
+      "readme": "none",
+      "out": "../api"
+  }
 }