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:
Kristaps Fabians Geikins
2025-08-28 11:38:53 +03:00
committed by GitHub
parent 8a9b4829d9
commit 0516cdc06a
7 changed files with 35 additions and 24 deletions
-7
View File
@@ -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 -->
+5 -2
View File
@@ -1,5 +1,8 @@
{
"extends": "../../jsconfig.base.json",
"compilerOptions": {},
"compilerOptions": {
"target": "es2021",
"module": "commonJS"
},
"exclude": ["node_modules", "dist"],
"include": ["src", "examples"]
}
-4
View File
@@ -1,4 +0,0 @@
{
"extends": "../../jsconfig.base.json",
"include": ["src"]
}
+5 -1
View File
@@ -1,4 +1,8 @@
{
"extends": "../../jsconfig.base.json",
"compilerOptions": {
"target": "es2021",
"module": "commonJS"
},
"exclude": ["node_modules"],
"include": ["src"]
}
+23
View File
@@ -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 */
]
}
+2 -1
View File
@@ -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/**"
},