fix(fe2): model folders showing errors + some TS IDE optimization (#5329)
* fix(fe2): dont show upload error for model folder row * chore: vscode TS server speedup
This commit is contained in:
committed by
GitHub
parent
8a9b4829d9
commit
0516cdc06a
@@ -1,7 +0,0 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"target": "es2021",
|
||||
"module": "commonJS"
|
||||
},
|
||||
"exclude": ["node_modules"]
|
||||
}
|
||||
@@ -188,15 +188,6 @@
|
||||
<div class="text-heading text-foreground">
|
||||
{{ name }}
|
||||
</div>
|
||||
<NuxtLink
|
||||
v-if="showLastUploadFailed"
|
||||
v-tippy="'Last upload failed'"
|
||||
v-keyboard-clickable
|
||||
class="text-body-3xs text-danger hover:text-danger-lighter cursor-pointer"
|
||||
@click.stop="actions?.showUploads()"
|
||||
>
|
||||
<ExclamationCircleIcon class="w-4 h-4" />
|
||||
</NuxtLink>
|
||||
</div>
|
||||
|
||||
<!-- Preview -->
|
||||
|
||||
@@ -1,5 +1,8 @@
|
||||
{
|
||||
"extends": "../../jsconfig.base.json",
|
||||
"compilerOptions": {},
|
||||
"compilerOptions": {
|
||||
"target": "es2021",
|
||||
"module": "commonJS"
|
||||
},
|
||||
"exclude": ["node_modules", "dist"],
|
||||
"include": ["src", "examples"]
|
||||
}
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
{
|
||||
"extends": "../../jsconfig.base.json",
|
||||
"include": ["src"]
|
||||
}
|
||||
@@ -1,4 +1,8 @@
|
||||
{
|
||||
"extends": "../../jsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"target": "es2021",
|
||||
"module": "commonJS"
|
||||
},
|
||||
"exclude": ["node_modules"],
|
||||
"include": ["src"]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,23 @@
|
||||
{
|
||||
/* load each package separately, rather than as one giant progream */
|
||||
"files": [],
|
||||
"references": [
|
||||
{ "path": "packages/fileimport-service" },
|
||||
{ "path": "packages/frontend-2" },
|
||||
{ "path": "packages/monitor-deployment" },
|
||||
{ "path": "packages/objectloader" },
|
||||
{ "path": "packages/objectloader2" },
|
||||
{ "path": "packages/objectsender" },
|
||||
{ "path": "packages/preview-frontend" },
|
||||
{ "path": "packages/preview-service" },
|
||||
{ "path": "packages/server" },
|
||||
{ "path": "packages/shared" },
|
||||
{ "path": "packages/tailwind-theme" },
|
||||
{ "path": "packages/ui-components" },
|
||||
{ "path": "packages/ui-components-nuxt" },
|
||||
{ "path": "packages/viewer" },
|
||||
{ "path": "packages/viewer-sandbox" },
|
||||
{ "path": "packages/webhook-service" }
|
||||
/* …add all other packages listed in workspace.code-workspace */
|
||||
]
|
||||
}
|
||||
@@ -97,7 +97,6 @@
|
||||
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
||||
},
|
||||
"files.eol": "\n",
|
||||
"volar.vueserver.maxOldSpaceSize": 4000,
|
||||
"cSpell.words": [
|
||||
"Automations",
|
||||
"Bursty",
|
||||
@@ -111,6 +110,8 @@
|
||||
"OIDC",
|
||||
"Prorotation"
|
||||
],
|
||||
"typescript.tsserver.maxTsServerMemory": 8192,
|
||||
"typescript.disableAutomaticTypeAcquisition": true,
|
||||
"tailwindCSS.experimental.configFile": {
|
||||
"packages/frontend-2/tailwind.config.cjs": "packages/frontend-2/**"
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user