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" ] }