From aef86b71b4b168158b98ded31815021397fb12d6 Mon Sep 17 00:00:00 2001 From: Gregor MacLennan Date: Fri, 28 Feb 2025 23:44:20 +0900 Subject: [PATCH] chore: fix type rootDir for publishing types (#39) --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 228e8d6..94bc993 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,7 +16,8 @@ "forceConsistentCasingInFileNames": true, "skipLibCheck": true, - "typeRoots": ["types", "node_modules/@types"] + "typeRoots": ["types", "node_modules/@types"], + "rootDir": "." }, "include": ["**/*"], "exclude": ["node_modules"]