From 5291d65ef427472d8886db0ab7607f6dd272bac0 Mon Sep 17 00:00:00 2001 From: Justin Ridgewell Date: Sun, 26 Jun 2022 13:32:55 -0400 Subject: [PATCH] Cleanup tsconfig.json --- tsconfig.json | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 70da436..ce6c613 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,23 +3,16 @@ "moduleResolution": "node", "esModuleInterop": true, "target": "es2015", - "module":"es2015", + "module": "es2015", "lib": ["es2015"], "strict": true, "sourceMap": true, + "inlineSources": true, "declaration": true, "allowSyntheticDefaultImports": true, "declarationDir": "dist/types", - "outDir": "dist/lib", - "typeRoots": [ - "node_modules/@types" - ] + "typeRoots": ["node_modules/@types"] }, - "exclude": [ - "dist" - ], - "include": [ - "src", - "test" - ] + "exclude": ["dist"], + "include": ["src", "test"] }