eng - expand usage of readonly setting for vscode (#184682)

This commit is contained in:
Benjamin Pasero 2023-06-09 10:13:16 +02:00 committed by GitHub
parent 8833810738
commit c000cb1474
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

12
.vscode/settings.json vendored
View file

@ -35,6 +35,12 @@
},
"files.readonlyInclude": {
"**/node_modules/**": true,
"**/yarn.lock": true,
"src/vs/workbench/workbench.web.main.css": true,
"src/vs/workbench/workbench.desktop.main.css": true,
"src/vs/workbench/workbench.desktop.main.nls.js": true,
"src/vs/workbench/workbench.web.main.nls.js": true,
"build/**/*.js": true,
"out/**": true,
"out-build/**": true,
"out-vscode/**": true,
@ -45,6 +51,12 @@
"test/automation/out/**": true,
"test/integration/browser/out/**": true,
},
"files.readonlyExclude": {
"build/builtin/*.js": true,
"build/monaco/*.js": true,
"build/npm/*.js": true,
"build/*.js": true
},
"lcov.path": [
"./.build/coverage/lcov.info",
"./.build/coverage-single/lcov.info"