tk3118’s blog

技術ブログっぽいただのブログです。

TypeScript

【TypeScript】Property does not exist on type

概要 参考資料 概要 Property does not exist on type これは型定義無しでJSを使用したり、requestから取ってきてパースされたJsonなどを使おうとすると起こるかと思われます。 要は、型定義ないよって話なので、 型定義 するか anyにするかで解決します。 …

【TypeScript】~ using the 'esModuleInterop' flag.と言われた時の対応

概要 詳細 概要 以下のようなエラーが出るときがあります。 This module is declared with using 'export =', and can only be used with a default import when using the 'esModuleInterop' flag. 対応としては、tsc のフラグに --esModuleInterop を付け…