From 459b183a42314d99d4a9a20bd17fa46e6ed2fe4c Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 6 Oct 2015 09:55:32 -0400 Subject: [PATCH] Add jsdoc.json Configuration file for jsdoc: jsdoc -c jsdoc.json --- jsdoc.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 jsdoc.json diff --git a/jsdoc.json b/jsdoc.json new file mode 100644 index 000000000..9e60b901b --- /dev/null +++ b/jsdoc.json @@ -0,0 +1,10 @@ +{ + "source": { + "include": [ "UI/WebServerResources/js" ], + "includePattern": "(Common|Contacts|Mailer|Preferences|Scheduler)/.+\\.js$" + }, + "opts": { + "recurse": true, + "destination": "Documentation/JavaScript-API" + } +}