Skip to content

Commit

Permalink
build: exclude dist from typechecl
Browse files Browse the repository at this point in the history
  • Loading branch information
johannschopplich committed Jan 13, 2025
1 parent e7bf65e commit 14dfbb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/fixture/pages/$testApi.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { $testApi, useTestResult } from '#imports'
import type { TestApiTodo } from '~/types'
import { $testApi, useTestResult } from '#imports'
const json = await $testApi<TestApiTodo>('todos')
const blob = await $testApi<Blob>('blob')
Expand Down
2 changes: 1 addition & 1 deletion test/fixture/pages/useTestApiData.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { useTestApiData, useTestResult } from '#imports'
import type { TestApiTodo } from '~/types'
import { useTestApiData, useTestResult } from '#imports'
const { data } = await useTestApiData<TestApiTodo[]>(
'todos',
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"extends": "./.nuxt/tsconfig.json",
"exclude": ["playground", "test"]
"exclude": ["dist", "playground", "test"]
}

0 comments on commit 14dfbb2

Please sign in to comment.