From e38aa25777ba3c56a624f7a576b646ed6939e03f Mon Sep 17 00:00:00 2001 From: Dominic Bartl Date: Thu, 2 Nov 2023 14:17:38 +0100 Subject: [PATCH] fix: build for function-utils --- packages/firestore/tsconfig.json | 2 +- packages/function-utils/tsconfig.json | 18 ++++++++++++------ 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/packages/firestore/tsconfig.json b/packages/firestore/tsconfig.json index 905f43b..3f56ba3 100644 --- a/packages/firestore/tsconfig.json +++ b/packages/firestore/tsconfig.json @@ -6,7 +6,7 @@ "baseUrl": "./", "types": [ "node", - "mocha", + "mocha" ], "paths": { "firestore-storage-core": ["../core"] diff --git a/packages/function-utils/tsconfig.json b/packages/function-utils/tsconfig.json index 83028ae..4c85867 100644 --- a/packages/function-utils/tsconfig.json +++ b/packages/function-utils/tsconfig.json @@ -1,14 +1,20 @@ { - "extends": "../tsconfig-base.json", + "extends": "../tsconfig-base.json", "compilerOptions": { "outDir": "./dist", "rootDir": "./src", "baseUrl": "./", - "strict": true, - "lib": [ - "es6", "dom" - ] + "types": [ + "node", + "mocha", + ], + "paths": { + "firestore-storage-core": ["../core"] + } }, "include": ["src/**/*"], - "exclude": ["node_modules"] + "exclude": ["node_modules"], + "references": [ + {"path": "../core" } + ] }