mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
12 lines
240 B
JSON
12 lines
240 B
JSON
{
|
|
"files.exclude": {
|
|
"**/out": false // set this to true to hide the "out" folder with the compiled JS files
|
|
},
|
|
"search.exclude": {
|
|
"**/out": true
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.useTabStops": true,
|
|
"editor.tabSize": 4
|
|
}
|