1
1

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.

AngularをVSCodeでデバッグする

Posted at

はじめに

AngularをVSCodeでデバッグする手順です。

ng new でAngularプロジェクトを作成する

まずは、ng newでAngularプロジェクを作成します。
例では「my-app」というプロジェクトを作成します。

ng new my-app

AngularプロジェクトをVSCodeで開く

ng new my-appで生成されたmy-appフォルダをVSCodeで開きます。
こんなフォルダ構成になっていると思います。
image.png

.vscodeフォルダの中にVSCodeでの実行設定が出来上がっています。
image.png

サイドメニューの「デバッグと実行」を選択すると「実行とデバッグ」エリアに「ng serve」が選択されています。これが.vscode/launch.jsonで定義されている実行構成です。  
緑色の実行ボタンをクリックするとmy-appが起動します。
image.png

ブラウザが起動してmy-appが起動しました。
image.png

ブレークポイントを試す

ターミナルでctrl + cを押下して、実行済みのmy-appを一旦終了します。

app.component.tsのtitleプロパティにブレークポイントを設定します。
あまりプロパティにブレークポイントを貼る人はいないと思いますが、ng newしたてのプロジェクトに処理がなかったのでここにしました。
image.png

サイドメニューの「デバッグと実行」を選択し、「実行とデバッグ」エリアの実行ボタンをクリックしてmy-appを起動すると、ブレークポイントで停止します。
image.png

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?