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/shared/tsconfig.json | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'packages/shared/tsconfig.json') diff --git a/packages/shared/tsconfig.json b/packages/shared/tsconfig.json index ff5a29b..79889d2 100644 --- a/packages/shared/tsconfig.json +++ b/packages/shared/tsconfig.json @@ -1,12 +1,14 @@ { - "extends": "../../tsconfig.json", + "extends": "./tsconfig.build.json", "compilerOptions": { - "composite": true, - "declarationDir": "dist", - "emitDeclarationOnly": true, - "rootDir": "src" + "composite": false, + "emitDeclarationOnly": false, + "declarationDir": null, + "noEmit": true, + "rootDir": null }, "include": [ - "src/**/*.ts" + "src/**/*.ts", + "esbuild.config.js" ] } -- cgit v1.2.3-54-g00ecf