You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
A key feature of TypeScript is that it still emits output, even when there are type errors. This allows code to still be run even in the presence of type errors. However, if I add let str: string = 1; to src/index.tsx in a brand new app, I only see the "Failed to compile" message in my browser.
Is there anyway I can get around this behavior? I'm perfectly content to only see the compilation errors in my console.
The text was updated successfully, but these errors were encountered:
A key feature of TypeScript is that it still emits output, even when there are type errors. This allows code to still be run even in the presence of type errors. However, if I add
let str: string = 1;
tosrc/index.tsx
in a brand new app, I only see the "Failed to compile" message in my browser.Is there anyway I can get around this behavior? I'm perfectly content to only see the compilation errors in my console.
The text was updated successfully, but these errors were encountered: