From b52765ecd89276a215dfadac16166d7e69b5ccf1 Mon Sep 17 00:00:00 2001 From: Bojan Kucera Date: Sat, 7 Jun 2025 10:48:36 -0400 Subject: [PATCH] updated tsconfig for shutdown --- libs/shutdown/tsconfig.json | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/libs/shutdown/tsconfig.json b/libs/shutdown/tsconfig.json index d64bb64..2c58631 100644 --- a/libs/shutdown/tsconfig.json +++ b/libs/shutdown/tsconfig.json @@ -1,15 +1,19 @@ { "extends": "../../tsconfig.lib.json", "compilerOptions": { - "outDir": "dist", - "rootDir": "src" + "outDir": "./dist", + "rootDir": "./src", + "declaration": true, + "declarationMap": true, + "sourceMap": false }, "include": [ "src/**/*" ], "exclude": [ - "node_modules", "dist", - "test" + "node_modules", + "**/*.test.ts", + "**/*.spec.ts" ] }