Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save deanbot/71c1535b79e100b1b8e4256be312d38f to your computer and use it in GitHub Desktop.
Save deanbot/71c1535b79e100b1b8e4256be312d38f to your computer and use it in GitHub Desktop.
Hide VS folders in .NET MVC project for es6 development
"files.exclude": {
"**/bin": true,
"**/obj": true,
"**/*.csproj": true,
"**/*.csproj.*": true,
"**/*.cs": true,
"**/node_modules": true,
"**/bower_components": true,
"**/Scripts": true,
"**/Models": true,
"**/Content": true,
"**/App_Start": true,
"**/App_Data": true,
"**/Controllers": true,
"**/Properties": true,
"**/Views": true,
"**/Utils": true,
"Web.*": true,
"**/*.asax": true,
"ApplicationInsights.config": true
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment