1
0
mirror of https://github.com/microsoft/TypeScript-Node-Starter.git synced 2025-11-08 16:17:37 +00:00

Merge pull request #56 from sebastianseilund/sourcemaps-typo

Removed extra "s" in sourceMap compilerOptions
This commit is contained in:
Bowden Kelly
2017-12-11 13:35:33 -08:00
committed by GitHub

View File

@@ -252,7 +252,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.