chore: enable type checking in more places

This commit is contained in:
Daniel Roe 2022-12-06 22:17:58 +00:00
parent 08d629ea78
commit 1e0f733c50
No known key found for this signature in database
GPG Key ID: 22D5008E4F5D9B55
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
<script setup>
<script setup lang="ts">
setupPageHeader()
await setupI18n()

View File

@ -1,4 +1,4 @@
<script setup>
<script setup lang="ts">
const { notifications } = useNotifications()
</script>

View File

@ -1,4 +1,4 @@
<script setup>
<script setup lang="ts">
const sub = process.dev ? 'dev' : useRuntimeConfig().public.env === 'staging' ? 'preview' : 'alpha'
</script>