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?

More than 1 year has passed since last update.

Typescriptでnpm startしても上手くいかない

Last updated at Posted at 2022-06-11
  • Typescriptの学習時にnpm startでサーバーを起動させ、動作確認した時に起きたので自身の備忘目的で残してみる。

  • npm startでサーバーを起動させる。

  • ERROR in ./src/hooks/use_state_with_storage.ts 3:40 Module parse failed: Unexpected token (3:40) You may need an appropriate loader to handle this file type, currently no loaders are configured to process this file. See https://webpack.js.org/concepts#loaders
    というエラーが出てきた。

  • 最初は./src/hooks/use_state_with_storage.tsでタイポがあるかと思い見直したが特にない。

  • もう一度エラーを見返しYou may need an appropriate loader to handle this file type, currently no loaders are configured to process this file.というところが気になる。

  • 翻訳すると、このファイル形式を扱うには適切なローダーが必要かもしれません。現在、このファイルを処理するローダーは設定されていませんという意味になる。

  • ならばと webpack.config.js のファイルを見返すとここのtest: /\.tsx$/,の設定が少し足りていなかったことが発覚した。
    スクリーンショット 2022-06-11 17.10.00.png

  • test: /\.tsx$/,test: /\.tsx?$/,としたら解決した。

備忘として残してみた。

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?