Skip to content

Commit

Permalink
refactor: remove types/chai to prevent type conflicts. they now come …
Browse files Browse the repository at this point in the history
…bundled with vite
  • Loading branch information
erikwrede committed Oct 17, 2024
1 parent 9c713c9 commit badafc1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
8 changes: 0 additions & 8 deletions package-lock.json

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

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@
"@docusaurus/preset-classic": "3.5.2",
"@mdx-js/react": "3.0.1",
"@svgr/webpack": "8.1.0",
"@types/chai": "4.3.19",
"@types/mocha": "10.0.7",
"@types/node": "22.5.4",
"@typescript-eslint/eslint-plugin": "8.4.0",
Expand Down
6 changes: 5 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@
"noUncheckedIndexedAccess": false, // FIXME
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"paths": {
// workaround for: https://github.com/vitest-dev/vitest/issues/4567
"rollup/parseAst": ["./node_modules/rollup/dist/parseAst"]
}
},
"ts-node": {
"esm": true
Expand Down

0 comments on commit badafc1

Please sign in to comment.