mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
15 lines
424 B
JSON
15 lines
424 B
JSON
{
|
|
// set to false to hide directory from the VS Code Document Sidebar
|
|
"files.exclude": {
|
|
"client/out/**/*": false,
|
|
"client/server/**/*": false,
|
|
"client/node_modules": false,
|
|
"server/node_modules": false
|
|
},
|
|
// set this to false to include "out" folder in search results
|
|
"search.exclude": {
|
|
"out": true
|
|
},
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"typescript.tsc.autoDetect": "off"
|
|
} |