4
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 5 years have passed since last update.

【エラー解決】Angularでerror TS1005: ',' expected.のエラーの解決

Last updated at Posted at 2018-08-16

#概要

最近は、JSのフレームワークを使ったりしてます。
今回はAngularについて、error TS1005: ',' expected. のエラーで解決したので、その方法について書きます。

以下の画像のように、ターミナルでサーバーを起動しようと

スクリーンショット_2018-08-16_13_17_27.png
$ npm start

入力すると、

ERROR in src/app/common/header/header.component.ts(6,3): error TS1005: ',' expected.

エラーが出てしまう。

これは、エラー内容にある通り、テキストエディタの中のファイル構造を示している。

上記のエラーで例えると、ファイル
srcの中の
=>appの中の
=>commonの中の
=>headerの中の
=>header.component.ts
の中に3~6行目あたりの,(カンマ)のエラーを表している。

下の画像の5行目の最後にカンマの記載漏れがあるので、最後にカンマを追加するとエラーが消えた。

header_component_ts_—___bwm-project_bwm-ng.png
4
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
4
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?