When I run TypeScript with isolatedModules
true and isolatedModules
false, I get this error:
tsconfig.json(5,9): error TS5053: Option 'noEmitOnError' cannot be specified with option 'isolatedModules'.
Why??
Example tsconfig:
{
"compilerOptions": {
"noEmitOnError": true,
"isolatedModules": true,
}
}
Apparently the restriction was a mistake. Fixed on master!: https://github.com/Microsoft/TypeScript/pull/31043