strip comments when re-emitting tsconfig.json (#10529)
This commit is contained in:
Родитель
ddb5a00410
Коммит
bab4a52983
|
@ -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
|
||||
};
|
||||
|
|
Загрузка…
Ссылка в новой задаче