kemono2/client/.vscode/settings.json

24 lines
565 B
JSON
Raw Normal View History

2024-07-04 22:08:17 +02:00
{
2024-11-26 00:11:49 +01:00
"typescript.tsdk": "./node_modules/typescript/lib",
"typescript.enablePromptUseWorkspaceTsdk": true,
2024-07-04 22:08:17 +02:00
"files.exclude": {
"node_modules": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.code-search": true,
"**/dev": true,
"**/dist": true
},
"javascript.preferences.importModuleSpecifierEnding": "js",
"javascript.preferences.quoteStyle": "double",
"javascript.format.semicolons": "insert",
"[javascript]": {
"editor.tabSize": 2
},
"[scss]": {
"editor.tabSize": 2
}
}