0
0

More than 1 year has passed since last update.

VSCode で Problems loading reference 'vscode://schemas/settings/configurationDefaults' が出た時の解決法

Last updated at Posted at 2023-06-10

はじめに

VSCode で以下のエラーが出た時の解決方法のメモです。

Problems loading reference 'vscode://schemas/settings/configurationDefaults': 
Unable to load schema from 'vscode://schemas/settings/configurationDefaults': 
cannot open vscode://schemas/settings/configurationDefaults. 
Detail: Unable to resolve text model content for resource vscode://schemas/settings/configurationDefaults.

解決方法

VS Code の settings.json に以下の設定を追加したら解決できました。

settings.json
{
    "json.schemaDownload.enable": true,
}

参考

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