From e1ae79cb9cce5792eef559c9c2167530284da32b Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Sun, 29 Jan 2023 15:53:59 +0100 Subject: [PATCH] server/tsconfig: remove redundant options --- server/tsconfig.json | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/server/tsconfig.json b/server/tsconfig.json index 992c7873..b62bf9eb 100644 --- a/server/tsconfig.json +++ b/server/tsconfig.json @@ -15,13 +15,8 @@ "files": true }, "compilerOptions": { - "outDir": "../dist" /* Specify an output folder for all emitted files. See more: https://www.typescriptlang.org/tsconfig#outDir */, "noEmit": false /* Disable emitting file from a compilation. See more: https://www.typescriptlang.org/tsconfig#noEmit */, - // TODO: Remove eventually "noImplicitAny": false /*Enable error reporting for expressions and declarations with an implied any type. See more: https://www.typescriptlang.org/tsconfig#noImplicitAny */ - } /* Instructs the TypeScript compiler how to compile .ts files. */, - "exclude": [ - "./dist" - ] /* Specifies a list of glob patterns that match files to be excluded from compilation. Requires TypeScript version 2.0 or later. */ + } /* Instructs the TypeScript compiler how to compile .ts files. */ }