mirror of
https://github.com/microsoft/monaco-editor.git
synced 2024-11-25 16:35:44 +08:00
5ccfdf7c02
out/amd -> out/languages/amd-tsc out/release -> out/languages/bundled release -> out/monaco-editor
17 lines
491 B
JSON
17 lines
491 B
JSON
// Place your settings in this file to overwrite default and user settings.
|
|
{
|
|
"editor.tabSize": 4,
|
|
"editor.insertSpaces": false,
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"search.exclude": {
|
|
"**/node_modules": true,
|
|
"**/dist": true,
|
|
"**/out": true
|
|
},
|
|
"typescript.tsdk": "./node_modules/typescript/lib",
|
|
"git.branchProtection": ["main", "release/*"],
|
|
"git.branchProtectionPrompt": "alwaysCommitToNewBranch",
|
|
"git.branchRandomName.enable": true
|
|
}
|