From 60e478ff9048e7594d7a70d09c9812cf3e13e171 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 17 Jul 2023 17:17:16 +0200 Subject: [PATCH] Enabled sourcemaps in tsconfig refs https://ghost.slack.com/archives/C05DUT549JR/p1689604345421799 - this enables sourcemap creation in our tsconfig setup so breakpoints work correctly in a debugger - this should eventually be switched out for a CLI flag as we don't want to produce sourcemaps all the time (for example during release) --- ghost/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghost/tsconfig.json b/ghost/tsconfig.json index 2e44f0a3df..23afce2315 100644 --- a/ghost/tsconfig.json +++ b/ghost/tsconfig.json @@ -55,7 +55,7 @@ "declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */ // "declarationMap": true, /* Create sourcemaps for d.ts files. */ // "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */ - // "sourceMap": true, /* Create source map files for emitted JavaScript files. */ + "sourceMap": true, /* Create source map files for emitted JavaScript files. */ // "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */ // "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */ // "outDir": "build", /* Specify an output folder for all emitted files. */