From f45569caf4c675f2510adcf67d1d34c64b63ac7c Mon Sep 17 00:00:00 2001 From: yobacca Date: Sun, 13 Nov 2022 19:18:09 +0100 Subject: [PATCH] fix: typescript errors due to inclusion of @types --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 39e2fe8..dc34321 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,13 @@ { "files": ["src/index.ts"], - "exclude": ["dist", "node_modules", "__tests__"], + "exclude": ["dist", "node_modules", "__tests__", "docs", ".**"], "compilerOptions": { "lib": ["ES2020"], "target": "ES2020", "module": "ES2020", "moduleResolution": "node", "esModuleInterop": true, + "types": [], "strict": true,