Skip to content

Commit

Permalink
fix: exclude tests in tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
BobbieGoede committed Sep 19, 2024
1 parent 9d32651 commit cc5eff6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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": ["dist", "node_modules", "playground"]
"exclude": ["dist", "node_modules", "playground", "specs/**", "test/**"]
}
3 changes: 2 additions & 1 deletion tsconfig.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
"compilerOptions": {
"types": ["vitest/globals"]
},
"exclude": ["**/*/dist/*", "dist/**", "docs/**", "playground/**", "specs/**", "src/runtime/templates/**"]
"include": ["test/**", "specs/**"],
"exclude": ["**/*/dist/*", "dist/**", "docs/**", "playground/**", "src/runtime/templates/**"]
}

0 comments on commit cc5eff6

Please sign in to comment.