Removed extra "s" in sourceMap compilerOptions

This commit is contained in:
Sebastian Seilund 2017-11-18 12:46:51 -08:00 коммит произвёл Bowden
Родитель 4d2b9148cf
Коммит 90f07c09b5
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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.