From f9d076ea6c151dc358b88a094210d7a2fd65b47d Mon Sep 17 00:00:00 2001 From: gnuxie Date: Sat, 20 Apr 2024 20:02:32 +0100 Subject: [PATCH] dirs are relative to the source project. until https://github.com/microsoft/TypeScript/issues/29172 makes its way into a release at least --- templates/tsconfig.json | 6 +++++- tsconfig.json | 2 -- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/templates/tsconfig.json b/templates/tsconfig.json index d28e794..177d623 100644 --- a/templates/tsconfig.json +++ b/templates/tsconfig.json @@ -1,4 +1,8 @@ { - "extends": "gnuxie-tsconfig/tsconfig.json" + "extends": "gnuxie-tsconfig/tsconfig.json", + "compilerOptions": { + "declarationDir": "dist", + "outDir": "dist" + } } diff --git a/tsconfig.json b/tsconfig.json index 4f8971b..8448168 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,9 +6,7 @@ "ESNext" ], "declaration": true, - "declarationDir": "dist", "declarationMap": true, - "outDir": "dist", "sourceMap": true, "strict": true, "strictNullChecks": true,