简体   繁体   中英

Typescript throws no error when calling nullable function

I have the following code in my react app:

在此处输入图像描述

As you can see onCheck can be undefined . but typescript shows no error and I'm getting a runtime error.

I have to add this prop has no default value.

My tsconfig:

{
    "compileOnSave": false,
    "compilerOptions": {
        "sourceMap": true,
        "target": "es5",
        "module": "esnext",
        "declaration": false,
        "noImplicitAny": false,
        "experimentalDecorators": true,
        "noLib": false,
        "jsx": "react",
        "noEmitOnError": true,
        "moduleResolution": "node",
        "lib": [
            "DOM",
            "ES5",
            "ScriptHost",
            "ES2015",
            "ES2018.Promise"
        ],
        "allowSyntheticDefaultImports": true
    },
    "exclude": [
        "node_modules"
    ]
}

Under compilerOptions , add "strict": true in your tsconfig.json .

From the docs:

The strict flag enables a wide range of type checking behavior that results in stronger guarantees of program correctness. Turning this on is equivalent to enabling all of the strict mode family options, which are outlined below.

  • alwaysStrict
  • strictNullChecks
  • strictBindCallApply
  • strictFunctionTypes
  • strictPropertyInitialization
  • noImplicitAny
  • noImplicitThis

If you only care about the nullable variables, then just use the "strictNullChecks" flag .

You don't have the according compiler option set in your tsconfig.json

Either add

"strictNullChecks": true

to just enable the null checks, or (recommended) add

"strict": true

to add a wide range of checks.

Be aware that using "strict": true may break your build when you upgrade the typescript version. Because new strict... flags will be switched on with that flag automatically.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM