Skip to content

Commit

Permalink
fix: avoid @types/* deps affect vue tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Feb 12, 2024
1 parent 92c2e08 commit 455c85e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
},
"devDependencies": {
"@antfu/ni": "^0.21.12",
"@types/node": "^20.11.17",
"@types/semver": "^7.5.7",
"typings/node": "npm:@types/node@^20.11.17",
"typings/semver": "npm:@types/semver@^7.5.7",
"semver": "^7.6.0",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
Expand Down
12 changes: 6 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
"useUnknownInCatchVariables": false,
"allowSyntheticDefaultImports": true,
"lib": ["esnext"],
"sourceMap": true
"sourceMap": true,
"typeRoots": ["./node_modules/typings"]
}
}

0 comments on commit 455c85e

Please sign in to comment.