mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-15 17:16:45 +00:00
fix: Add missing type check, updated turbo config (#18341)
This commit is contained in:
@@ -17,7 +17,7 @@ type Props = {
|
||||
|
||||
const props = defineProps<Props>();
|
||||
|
||||
const renameInput = useTemplateRef('renameInput');
|
||||
const renameInput = useTemplateRef<{ forceFocus: () => void }>('renameInput');
|
||||
|
||||
const dataStoreStore = useDataStoreStore();
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
"outputs": ["dist/**"]
|
||||
},
|
||||
"typecheck": {
|
||||
"dependsOn": ["^typecheck"]
|
||||
"dependsOn": ["^typecheck", "^build"]
|
||||
},
|
||||
"format": {},
|
||||
"format:check": {},
|
||||
|
||||
Reference in New Issue
Block a user