From f29434b0a3304bce5b92953a16e489cc24ada2e2 Mon Sep 17 00:00:00 2001 From: Daniel Dyla Date: Fri, 1 Oct 2021 13:55:55 -0400 Subject: [PATCH] chore: inline sources in source maps (#2488) * chore: inline sources in source maps * chore: sort tsconfig options Co-authored-by: Nev <54870357+MSNev@users.noreply.github.com> Co-authored-by: Valentin Marchaud --- tsconfig.base.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tsconfig.base.json b/tsconfig.base.json index b2d1a3bd96f..2d628cad8de 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -6,19 +6,20 @@ "declaration": true, "declarationMap": true, "forceConsistentCasingInFileNames": true, + "incremental": true, + "inlineSources": true, "module": "commonjs", + "newLine": "LF", "noEmitOnError": true, "noFallthroughCasesInSwitch": true, + "noImplicitOverride": true, "noImplicitReturns": true, "noUnusedLocals": true, - "noImplicitOverride": true, "pretty": true, "sourceMap": true, "strict": true, "strictNullChecks": true, - "target": "es2017", - "incremental": true, - "newLine": "LF" + "target": "es2017" }, "exclude": [ "node_modules"