Published on

typescriptのtype errorを確認する方法

Authors
  • avatar
    Name
    ssu
    Twitter

Eslintでformatに関してはreportしてくれますが、typescriptのtypeエラーは出してくれなかったりします。

これらはbuild時に出るエラーで、気軽に確認できると開発が楽になります。そこで、typescriptのtype errorを感知する方法を紹介します。

すごく簡単で、

yarn run tsc --noemit

とするだけです。これをlintする時のpackage.jsonのcommandにも入れておけば、便利です。

{ ... "scripts": { "check-types": "tsc --noemit", "lint": "yarn eslint && yarn check-types", }

参考: ESLint not reporting TypeScript compiler type checking errors