I'm trying to exclude several folders on the Explore
tab in Visual Studio Code. To do that, I have added a following jsconfig.json
to the root of my project:
{
"compilerOptions": {
"target": "ES6"
},
"exclude": [
"node_modules"
]
}
But the node_modules
folder is still visible in the directory tree.
What am I doing wrong? Are there any other options?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…