0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

はじめに

未だに同じ問題で突っかかる自分への戒めの意味も込めてこの記事をしたためる。

再現

よし、nodejsでtypescriptのコードを書くぞー!
ファイルを操作するから fs を使おう!
はじめから使えるからnpm installはいらないはず!

あとはtscして……

image.png

………:thinking:

原因

fsをはじめから使えるが、nodeが型を知らないのが原因だった。

解決

node用に型をnpm install してやればいい。

npm install --save-dev @types/node

これでOK:ok_hand:

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?