From 30d2f77b10401fbc368e069edb32e1f3b96a2d27 Mon Sep 17 00:00:00 2001 From: Oskar Eichler <62393985+OskarEichler@users.noreply.github.com> Date: Fri, 28 Aug 2026 01:55:22 +0300 Subject: [PATCH] fix: emit declarations at the published types entrypoint --- tsconfig.build.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.build.json b/tsconfig.build.json index 2a21c289..a1e5c4b3 100644 --- a/tsconfig.build.json +++ b/tsconfig.build.json @@ -1,4 +1,8 @@ { "extends": "./tsconfig", - "exclude": ["example"] + "compilerOptions": { + "rootDir": "src" + }, + "include": ["src"], + "exclude": ["example", "src/__tests__", "src/__fixtures__", "src/__mocks__"] }