TypeScript Version:
1.8.10
Code
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"noLib": true,
"outDir": "out"
},
"exclude": [
"node_modules"
]
}
Have a file extension.js and run once tsc -p jsconfig.json which gives you a file out/extension.js. Start tsc in watch mode, make a change to extension.js
Expected behavior:
The compiler should auto-magically exclude the outDir.
Actual behavior:
It recurses forever which make the terminal print funny patterns

TypeScript Version:
1.8.10
Code
{ "compilerOptions": { "module": "commonjs", "target": "ES6", "noLib": true, "outDir": "out" }, "exclude": [ "node_modules" ] }Have a file
extension.jsand run oncetsc -p jsconfig.jsonwhich gives you a fileout/extension.js. Start tsc in watch mode, make a change toextension.jsExpected behavior:
The compiler should auto-magically exclude the
outDir.Actual behavior:
It recurses forever which make the terminal print funny patterns
