mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-07 16:29:51 +03:00
32 lines
979 B
Plaintext
32 lines
979 B
Plaintext
{
|
|
"emmet.excludeLanguages": [],
|
|
"emmet.includeLanguages": {
|
|
"markdown": "html",
|
|
"javascript": "javascriptreact",
|
|
"typescript": "typescriptreact"
|
|
},
|
|
"emmet.showSuggestionsAsSnippets": true,
|
|
"emmet.triggerExpansionOnTab": true,
|
|
"files.exclude": {
|
|
"**/*.js.map": {
|
|
"when": "$(basename)"
|
|
},
|
|
"**/node_modules": true
|
|
},
|
|
"html.autoClosingTags": true,
|
|
"javascript.autoClosingTags": true,
|
|
"javascript.suggest.completeFunctionCalls": true,
|
|
"typescript.suggest.completeFunctionCalls": true,
|
|
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
|
|
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
|
|
"javascript.inlayHints.parameterNames.enabled": "all",
|
|
"typescript.inlayHints.parameterNames.enabled": "all",
|
|
"javascript.suggest.autoImports": true,
|
|
"search.exclude": {
|
|
"**/coverage": true,
|
|
"**/node_modules": true
|
|
},
|
|
"typescript.autoClosingTags": true,
|
|
"typescript.suggest.autoImports": true
|
|
}
|