From 56adb2e9e4b4e1fc341adef9c4dcce30d158a78d Mon Sep 17 00:00:00 2001 From: Spiker985 <7829451+Spiker985@users.noreply.github.com> Date: Fri, 24 Feb 2023 22:30:35 -0500 Subject: [PATCH] Add jsdoc config file - Gets passed from jsdoc2md to jsdoc --- docs/.jsdoc.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 docs/.jsdoc.json diff --git a/docs/.jsdoc.json b/docs/.jsdoc.json new file mode 100644 index 0000000000..fae020030c --- /dev/null +++ b/docs/.jsdoc.json @@ -0,0 +1,11 @@ +{ + "recurseDepth": 10, + "source": { + "include": ["src", "packages"], + "exclude": ["node_modules"], + "excludePattern": "((^|\\/|\\\\)_|node_modules)" + }, + "opts": { + "recurse": true + } +}