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

VSCodeの設定メモ

0
Last updated at Posted at 2019-12-04

前提

・MacOS
・Node.jsがインストール済み

VSCodeの入手先

以下のサイトからダウンロード。

日本語化

左の一番下のアイコン または ⇧⌘X で拡張機能を表示。
image.png

検索フォームに「Japanese」と入力。
先頭に表示される「Japanese Language Pack〜」の「Install」を押下。
image.png

完了すると右下に「Restart Now」が表示されるので、押下する。
image.png

再起動後、メニューが日本語になっていればOK
image.png

ESLintパッケージのインストール

同様に拡張機能からESLintをインストール

Node.jsパッケージのインストール

同様に(略

image.png

ローカルインストール済のnode, npmをターミナルで使用する設定

settings.jsonに下記のPATHを追加する。
~/Library/Application Support/Code/User/settings.json

{
    "terminal.integrated.env.osx": {
        "PATH": "$HOME/.nodebrew/current/bin:$PATH"
    }
}

ターミナルを再起動し、バージョン表示を確認。

$ npm -v
5.6.0
$ node -v
v8.11.1
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?