Right now, we'll generate the following:
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": false,
"sourceMap": false
},
"exclude": [
"node_modules"
],
"files": [
"foo.ts"
]
}
which violates the schema that we've specified. If files are present as arguments, we shouldn't emit the "exclude" field.
Right now, we'll generate the following:
{ "compilerOptions": { "module": "commonjs", "target": "es5", "noImplicitAny": false, "sourceMap": false }, "exclude": [ "node_modules" ], "files": [ "foo.ts" ] }which violates the schema that we've specified. If files are present as arguments, we shouldn't emit the
"exclude"field.