Skip to content

Commit

Permalink
chore: fix docs build and typecheck
Browse files Browse the repository at this point in the history
  • Loading branch information
Waleed-KH committed Aug 27, 2024
1 parent f3ccaad commit f20504c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"include": [
"src",
".vitepress/**/*",
"../packages/**/*.vue"
"../packages/**/*.vue",
"vitepress.config.ts"
],
"references": [
{
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
"typecheck": "pnpm tsc:build && tsc --noEmit --project tsconfig.node.json && vue-tsc --noEmit -p docs/tsconfig.json",
"lint": "pnpm tsc:build && eslint --flag unstable_ts_config --cache .",
"lint:fix": "pnpm tsc:build && pnpm lint --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
"docs:dev": "pnpm build && vitepress dev docs",
"docs:build": "pnpm build && vitepress build docs",
"docs:preview": "pnpm build && vitepress preview docs"
},

"devDependencies": {
Expand Down
3 changes: 2 additions & 1 deletion packages/utilix/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"@internal/*": ["./src/_internal/*"],
}
},
"include": ["src"]
"include": ["src"],
"exclude": ["src/**/*.vue"]
}

0 comments on commit f20504c

Please sign in to comment.