From ba298d5c555e605a43dfbb5d57eef3bc2911d92c Mon Sep 17 00:00:00 2001 From: Jeroen Claassens Date: Fri, 15 Jan 2021 00:24:50 +0100 Subject: [PATCH] docs: fix api docgen --- src/tsconfig.json | 3 ++- tests/tsconfig.json | 1 + tsconfig.base.json | 3 ++- tsconfig.eslint.json | 3 ++- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index bdc402f..ec27d2f 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -5,5 +5,6 @@ "outDir": "../dist", "composite": true }, - "include": ["."] + "include": ["."], + "exclude": [] } diff --git a/tests/tsconfig.json b/tests/tsconfig.json index 1dd3eb3..4a80e01 100644 --- a/tests/tsconfig.json +++ b/tests/tsconfig.json @@ -8,5 +8,6 @@ } }, "include": [".", "../src/**/*"], + "exclude": [], "references": [{ "path": "../src" }] } diff --git a/tsconfig.base.json b/tsconfig.base.json index 175a192..6cecfd5 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -1,3 +1,4 @@ { - "extends": "@sapphire/ts-config" + "extends": "@sapphire/ts-config", + "exclude": ["tests"] } diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json index 98f820a..fd8ffb2 100644 --- a/tsconfig.eslint.json +++ b/tsconfig.eslint.json @@ -1,4 +1,5 @@ { "extends": "./tsconfig.base.json", - "include": ["src", "tests", "jest.config.ts"] + "include": ["src", "tests", "jest.config.ts"], + "exclude": [] }