Skip to content

Commit

Permalink
chore: improve type testing step
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Feb 21, 2024
1 parent 9771234 commit 86ee4d7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:types": "vue-tsc --noEmit",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"test:watch": "vitest watch"
},
"dependencies": {
Expand Down
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
"extends": "./.nuxt/tsconfig.json"
"extends": "./.nuxt/tsconfig.json",
"exclude": [
"playground",
"dist",
".nuxt",
".output"
]
}

0 comments on commit 86ee4d7

Please sign in to comment.