fix: Add missing type check, updated turbo config (#18341)

This commit is contained in:
shortstacked
2025-08-14 12:11:06 +01:00
committed by GitHub
parent 6239f37b5e
commit 8259b5f5c6
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ type Props = {
const props = defineProps<Props>();
const renameInput = useTemplateRef('renameInput');
const renameInput = useTemplateRef<{ forceFocus: () => void }>('renameInput');
const dataStoreStore = useDataStoreStore();

View File

@@ -7,7 +7,7 @@
"outputs": ["dist/**"]
},
"typecheck": {
"dependsOn": ["^typecheck"]
"dependsOn": ["^typecheck", "^build"]
},
"format": {},
"format:check": {},