strip comments when re-emitting tsconfig.json (#10529)

This commit is contained in:
Zhengbo Li 2016-08-25 06:21:02 -07:00 коммит произвёл GitHub
Родитель ddb5a00410
Коммит bab4a52983
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -186,6 +186,7 @@ namespace ts {
const content = `{
"compilerOptions": {
"allowJs": true
// Some comments
"outDir": "bin"
}
"files": ["file1.ts"]

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

@ -930,7 +930,8 @@ namespace ts {
const options: TranspileOptions = {
fileName: "config.js",
compilerOptions: {
target: ScriptTarget.ES6
target: ScriptTarget.ES6,
removeComments: true
},
reportDiagnostics: true
};