I have a code
let z;
z = 50;
z = 'z';
and my tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"sourceMap": false,
"noEmitOnError": true,
"strict": true,
"noImplicitAny": true
}
}
But what the hell are there no exceptions related to js compilation?
Best regards, Krova
Crova source
share