69 lines
2.6 KiB
JSON
69 lines
2.6 KiB
JSON
{
|
|
"eslint.alwaysShowStatus": true,
|
|
"tslint.autoFixOnSave": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"[markdown]": {
|
|
"editor.wordWrap": "on",
|
|
"editor.defaultFormatter": "vscode.markdown-language-features"
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
},
|
|
"liveServer.settings.root": "/dist",
|
|
"liveServer.settings.file": "spa.html",
|
|
"liveServer.settings.port": 5502,
|
|
"liveServer.settings.proxy": {
|
|
"enable": true,
|
|
"baseUri": "/api",
|
|
"proxyUri": "http://127.0.0.1:8080/api/v1/_/__NAMESPACE__"
|
|
},
|
|
"extensions.ignoreRecommendations": true,
|
|
"files.autoSave": "off",
|
|
"typescript.tsc.autoDetect": "off",
|
|
"npm.autoDetect": "off",
|
|
"debug.allowBreakpointsEverywhere": true,
|
|
"html.autoClosingTags": false,
|
|
"yaml.schemas": {
|
|
"node_modules/tibi-types/schemas/api-config/config.json": "api/config.y*ml",
|
|
"node_modules/tibi-types/schemas/api-config/collection.json": "api/collections/*.y*ml",
|
|
"node_modules/tibi-types/schemas/api-config/field.json": "api/collections/fields/*.y*ml"
|
|
},
|
|
"yaml.customTags": ["!include scalar"],
|
|
"filewatcher.commands": [
|
|
{
|
|
"match": "/api/.*(\\.ya?ml|js|env)$",
|
|
"isAsync": false,
|
|
"cmd": "docker compose -p tibi-svelte-starter-local restart tibiserver",
|
|
"event": "onFileChange"
|
|
}
|
|
],
|
|
"i18n-ally.localesPaths": [],
|
|
"workbench.colorCustomizations": {
|
|
"activityBar.activeBackground": "#296221",
|
|
"activityBar.background": "#296221",
|
|
"activityBar.foreground": "#ffffff",
|
|
"activityBar.inactiveForeground": "#ffffff99",
|
|
"activityBarBadge.background": "#2fce11",
|
|
"activityBarBadge.foreground": "#15202b",
|
|
"commandCenter.border": "#00000099",
|
|
"editorGroup.border": "#296221",
|
|
"panel.border": "#296221",
|
|
"sash.hoverBorder": "#296221",
|
|
"sideBar.border": "#296221",
|
|
"statusBar.background": "#58585a",
|
|
"statusBar.border": "#58585a",
|
|
"statusBar.foreground": "#ffffff",
|
|
"statusBarItem.hoverBackground": "#296221",
|
|
"statusBarItem.remoteBackground": "#58585a",
|
|
"statusBarItem.remoteForeground": "#ffffff",
|
|
"tab.activeBorder": "#296221",
|
|
"titleBar.activeBackground": "#58585a",
|
|
"titleBar.activeForeground": "#ffffff",
|
|
"titleBar.border": "#58585a",
|
|
"titleBar.inactiveBackground": "#58585a99",
|
|
"titleBar.inactiveForeground": "#ffffff99"
|
|
}
|
|
}
|