评论
tsconfig.json 文件可以包含行注释和块注释,使用与 ECMAScript 相同的规则。
//Leading comment
{
"compilerOptions": {
//this is a line comment
"module": "commonjs", //eol line comment
"target" /*inline block*/ : "es5",
/* This is a
block
comment */
}
}
/* trailing comment */