- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Windows-アプリケーション/VSCode/設定/任意の環境変数を設定 へ行く。
- 1 (2019-01-20 (日) 20:02:49)
任意の環境変数を設定
{
// Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [{ "type": "node", "request": "launch", "name": "Launch Program", "program": "${file}", "env": { "BROWSER": "Chrome" } }]
}
- launch.jsonに上のようにenvを追加して、任意の環境変数を設定する。
- この場合、環境変数BROWSERに値"chrome"を設定している。