From 00ee6f49911848966c6856ee1c267160936732a4 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Mon, 27 Apr 2020 19:05:58 -0400 Subject: Add TSDoc and TypeDoc to handle documentation --- tsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json index 8ba8cf3..3ee8f57 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -62,5 +62,13 @@ /* Advanced Options */ "forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */ + }, + "typedocOptions": { + "inputFiles": ["./src"], + "exclude": ["**/*.test.ts"], + "out": "docs", + "mode": "modules", + "includeVersion": true, + "excludePrivate": true, } } -- cgit