Skip to content

Commit badafc1

Browse files
committed
refactor: remove types/chai to prevent type conflicts. they now come bundled with vite
1 parent 9c713c9 commit badafc1

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

Diff for: package-lock.json

-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
"@docusaurus/preset-classic": "3.5.2",
6464
"@mdx-js/react": "3.0.1",
6565
"@svgr/webpack": "8.1.0",
66-
"@types/chai": "4.3.19",
6766
"@types/mocha": "10.0.7",
6867
"@types/node": "22.5.4",
6968
"@typescript-eslint/eslint-plugin": "8.4.0",

Diff for: tsconfig.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@
3333
"noUncheckedIndexedAccess": false, // FIXME
3434
"noUnusedLocals": true,
3535
"noUnusedParameters": true,
36-
"allowSyntheticDefaultImports": true
36+
"allowSyntheticDefaultImports": true,
37+
"paths": {
38+
// workaround for: https://github.com/vitest-dev/vitest/issues/4567
39+
"rollup/parseAst": ["./node_modules/rollup/dist/parseAst"]
40+
}
3741
},
3842
"ts-node": {
3943
"esm": true

0 commit comments

Comments
 (0)