From 72b4fb0545b1c40590fcbc8116e1eeeb50736bb0 Mon Sep 17 00:00:00 2001 From: Kim Biesbjerg Date: Sun, 8 Mar 2020 10:26:47 +0100 Subject: [PATCH] (chore) clean up tsconfig --- tsconfig.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 563c83c..fb85d20 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,17 +14,14 @@ "esnext.array" ], "module": "commonjs", - "outDir": "./dist/", + "outDir": "dist", "sourceMap": true, "typeRoots" : [ - "./node_modules/@types" + "node_modules/@types" ] }, "include": [ - "src/**/*.ts", - "tests/**/*.ts" + "src/**/*.ts" ], - "exclude": [ - "node_modules" - ] + "exclude": [] }