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() setupPageHeader()
await setupI18n() await setupI18n()

View file

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

View file

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