From 90f07c09b5d8ca1608c5e747d394f349586a293d Mon Sep 17 00:00:00 2001 From: Sebastian Seilund Date: Sat, 18 Nov 2017 12:46:51 -0800 Subject: [PATCH] Removed extra "s" in sourceMap compilerOptions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9316fcf..09c4c0b 100644 --- a/README.md +++ b/README.md @@ -253,7 +253,7 @@ The best part of source maps is when configured correctly, you don't even know t First you need to make sure your `tsconfig.json` has source map generation enabled: ```json "compilerOptions" { - "sourceMaps": true + "sourceMap": true } ``` With this option enabled, next to every `.js` file that the TypeScript compiler outputs there will be a `.map.js` file as well.