From 7acf865ffbb82c6d00334926a4527dd5ff3163a4 Mon Sep 17 00:00:00 2001 From: FabianLars Date: Tue, 18 Apr 2023 11:31:46 +0200 Subject: [PATCH] fix: Change out dir of type declaration files, fixes #321 Closes #322 --- tsconfig.base.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index d9443f59..1eebbeb6 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -14,7 +14,7 @@ "strict": true, "target": "ES2019", "declaration": true, - "declarationDir": "dist" + "declarationDir": "./" }, "exclude": ["dist-js", "node_modules", "test/types"] }