2021-03-22 15:59:05 +01:00
|
|
|
{
|
|
|
|
"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",
|
2021-09-13 18:12:40 +02:00
|
|
|
"liveServer.settings.port": 5502,
|
2021-03-22 15:59:05 +01:00
|
|
|
"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,
|
2022-02-01 19:03:49 +01:00
|
|
|
"html.autoClosingTags": false,
|
|
|
|
"yaml.schemas": {
|
2022-02-26 11:09:53 +01:00
|
|
|
"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"
|
2022-02-01 19:03:49 +01:00
|
|
|
},
|
|
|
|
"yaml.customTags": ["!include scalar"]
|
2021-03-22 15:59:05 +01:00
|
|
|
}
|