Skip to content

Commit c000cb1

Browse files
authored
eng - expand usage of readonly setting for vscode (microsoft#184682)
1 parent 8833810 commit c000cb1

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.vscode/settings.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@
3535
},
3636
"files.readonlyInclude": {
3737
"**/node_modules/**": true,
38+
"**/yarn.lock": true,
39+
"src/vs/workbench/workbench.web.main.css": true,
40+
"src/vs/workbench/workbench.desktop.main.css": true,
41+
"src/vs/workbench/workbench.desktop.main.nls.js": true,
42+
"src/vs/workbench/workbench.web.main.nls.js": true,
43+
"build/**/*.js": true,
3844
"out/**": true,
3945
"out-build/**": true,
4046
"out-vscode/**": true,
@@ -45,6 +51,12 @@
4551
"test/automation/out/**": true,
4652
"test/integration/browser/out/**": true,
4753
},
54+
"files.readonlyExclude": {
55+
"build/builtin/*.js": true,
56+
"build/monaco/*.js": true,
57+
"build/npm/*.js": true,
58+
"build/*.js": true
59+
},
4860
"lcov.path": [
4961
"./.build/coverage/lcov.info",
5062
"./.build/coverage-single/lcov.info"

0 commit comments

Comments
 (0)