「エクスプローラ」タブからフォルダを除外するにはどうすればいいですか? [重複] 質問する

「エクスプローラ」タブからフォルダを除外するにはどうすればいいですか? [重複] 質問する

Visual Studio Code のタブでいくつかのフォルダーを除外しようとしていますExplore。そのために、jsconfig.jsonプロジェクトのルートに次の内容を追加しました。

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

ただし、node_modulesフォルダーはディレクトリ ツリーに引き続き表示されます。

何が間違っているのでしょうか? 他に選択肢はありますか?

ベストアンサー1

使用files.exclude:

  • ファイル → 環境設定 → 設定 (または Mac の場合: コード → 環境設定 → 設定) に移動します。

  • 「ワークスペース設定」タブを選択します

  • settings.json右側に表示されているファイルに次のコードを追加します。

    // Place your settings in this file to overwrite default and user 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 
        }
    }
    

「ファイル」→「環境設定」→「ユーザー設定」を選択した場合は、現在のユーザーに対して除外フォルダーをグローバルに設定します。

おすすめ記事