From d07e7b834831230b53860d0919a68edc2d36193d Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sat, 8 Jan 2022 21:36:43 +0100 Subject: build: Eslint fixes for multi-module project MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kristóf Marussy --- packages/main/tsconfig.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'packages/main/tsconfig.json') diff --git a/packages/main/tsconfig.json b/packages/main/tsconfig.json index 1401445..00a1985 100644 --- a/packages/main/tsconfig.json +++ b/packages/main/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "../../tsconfig.json", + "extends": "../../config/tsconfig.base.json", "compilerOptions": { "noEmit": true, "types": [ @@ -9,14 +9,16 @@ }, "references": [ { - "path": "../service-shared" + "path": "../service-shared/tsconfig.build.json" }, { - "path": "../shared" + "path": "../shared/tsconfig.build.json" } ], "include": [ "src/**/*.ts", - "types/**/*.d.ts" + "types/**/*.d.ts", + "esbuild.config.js", + "jest.config.js" ] } -- cgit v1.2.3-54-g00ecf