Merge pull request #68 from github/ignore-javascript

Configure VSCode to ignore transpiled JavaScript
This commit is contained in:
Sam Partington 2020-06-17 16:14:07 +01:00 committed by GitHub
commit dc4009c7ed
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,10 @@
{
"files.exclude": {
// include the defaults from VS Code
"**/.git": true,
"**/.DS_Store": true,
// transpiled JavaScript
"lib": true,
}
}