1. ホーム
  2. visual-studio-code

[解決済み】「エクスプローラー」タブからフォルダを除外する方法は?

2022-03-25 17:38:51

質問

において、複数のフォルダを除外しようとしています。 Explore タブを表示します。そのために、私は以下の jsconfig.json をプロジェクトのルートに追加しました。

{
    "compilerOptions": {
        "target": "ES6"
    },
    "exclude": [
        "node_modules"
    ]
}

しかし node_modules フォルダがディレクトリツリーに表示されたままです。

何が間違っているのでしょうか?他の選択肢はないのでしょうか?

解決方法を教えてください。

使用方法 ファイル.exclude :

  • 次のページへ ファイル -> プリファレンス -> 設定 (またはMacの場合 コード -> 環境設定 -> 設定 )
  • を選びます。 workspace settings タブ
  • このコードを settings.json ファイルを表示します。
    // Place your settings in this file to overwrite default and user settings.

    {
        "settings": {
            "files.exclude": {
                "**/.git": true,         // this is a default value
                "**/.DS_Store": true,    // this is a default value
    
                "**/node_modules": true, // this excludes all folders 
                                        // named "node_modules" from 
                                        // the explore tree
    
                // alternative version
                "node_modules": true    // this excludes the folder 
                                        // only from the root of
                                        // your workspace 
            }
        }
    }

を選択した場合 ファイル -> 環境設定 -> ユーザー設定 を選択すると、現在のユーザーに対してグローバルに除外フォルダが設定されます。