mirror of
https://github.com/desktop/desktop
synced 2024-10-31 05:19:03 +00:00
643596763a
Using the search function (Ctrl + Shift + F on Windows) gives an error message about parsing glob.
19 lines
449 B
JSON
19 lines
449 B
JSON
{
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true,
|
|
"**/out": true
|
|
},
|
|
"files.exclude": {
|
|
"**/.git": true,
|
|
"**/.svn": true,
|
|
"**/.hg": true,
|
|
"**/.DS_Store": true,
|
|
"**/node_modules": true,
|
|
"**/dist": true,
|
|
"**/out": true,
|
|
"tslint-rules/**/*.js": true
|
|
},
|
|
"editor.tabSize": 2
|
|
}
|