Options
There are a few things that TypeScript prevents you from doing out of the box e.g. using a variable that isn't ever declared (of course you can use a declaration file for external systems).
That said, traditionally programming languages have a hard boundary between what is and isn't allowed by the type system. TypeScript is different in that it gives you control over where you put the slider. This is really to allow you to use the JavaScript you know and love with as much safety as you want. There are lots of compiler options to control exactly this slider so let's have a look.
Boolean Options
compilerOptions that are boolean can be specified as compilerOptions in tsconfig.json:
{
"compilerOptions": {
"someBooleanOption": true
}
}or on the command line
tsc --someBooleanOptionAll of these are
falseby default.
Click here to see all compiler options.
Last updated
Was this helpful?