React Native:构建不会因 TypeScript 错误而失败

问题描述

如何使 React Native CLI 因 TypeScript 错误而失败?

    const getCatOfTheDay = (cat: string) => `Cat of the day: ${cat}`;
    getCatOfTheDay(123);

这应该会抛出一个 TypeScript 错误

Argument of type 'number' is not assignable to parameter of type 'string'.ts(2345)

但我的 npm start 只是继续工作并且不会抛出任何错误

我的tsconfig.json

{
    "compilerOptions": {
        "allowSyntheticDefaultImports": true,"forceConsistentCasingInFileNames": true,"jsx": "react-native","module": "commonjs","noEmit": true,"noEmitOnError": true,"strict": true,"target": "ES2020"
    }
}

使用 react-native 0.62

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)