From 09ce4635579f258237917df2913c2a9a457e0f52 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 21 Oct 2022 15:08:07 +0200 Subject: [PATCH] Fix linter run MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- tsconfig.json | 2 +- tsconfig.tsdoc.json | 4 ++++ typedoc.json | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 tsconfig.tsdoc.json diff --git a/tsconfig.json b/tsconfig.json index e3e37916..442a4745 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,5 +9,5 @@ "importsNotUsedAsValues": "error" }, "include": ["**/*.ts"], - "exclude": ["node_modules", "examples/typescript"] + "exclude": ["node_modules"] } diff --git a/tsconfig.tsdoc.json b/tsconfig.tsdoc.json new file mode 100644 index 00000000..9b3c4751 --- /dev/null +++ b/tsconfig.tsdoc.json @@ -0,0 +1,4 @@ +{ + "extends": "./tsconfig.json", + "exclude": ["examples/typescript/**/*.ts"] +} diff --git a/typedoc.json b/typedoc.json index 2fdc1c5f..ecbcc558 100644 --- a/typedoc.json +++ b/typedoc.json @@ -1,4 +1,5 @@ { + "tsconfig": "./tsconfig.tsdoc.json", "entryPoints": ["src"], "out": "docs", "readme": "none" -- 2.34.1