20 строки
638 B
JSON
20 строки
638 B
JSON
{
|
|
"files.exclude": {
|
|
// include the defaults from VS Code
|
|
"**/.git": true,
|
|
"**/.DS_Store": true,
|
|
|
|
// transpiled JavaScript
|
|
"lib": true,
|
|
},
|
|
// Installing a new Node package often triggers VS Code's git limit warnings as there is typically
|
|
// an intermediate stage where many files are modified. This setting suppresses these warnings.
|
|
"git.ignoreLimitWarning": true,
|
|
// Use the vendored TypeScript version to have a consistent development experience across
|
|
// machines.
|
|
"typescript.tsdk": "node_modules/typescript/lib",
|
|
"[typescript]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
}
|