Skip to content

Commit 769556b

Browse files
committed
fix: update tsconfig for TypeScript 6 compatibility
1 parent 41f6ff2 commit 769556b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@
77
"module": "ESNext",
88
"lib": ["ES2024", "DOM", "DOM.Iterable"],
99
"jsx": "react-jsx",
10+
"rootDir": "./src",
1011
"outDir": "./build/",
11-
"types": ["vitest/globals"],
12+
"types": ["vitest/globals", "vite/client"],
1213

14+
"strict": false,
1315
"esModuleInterop": true,
1416
"moduleResolution": "Node",
17+
"ignoreDeprecations": "6.0",
1518
"skipLibCheck": true,
1619
"allowSyntheticDefaultImports": true,
1720
"forceConsistentCasingInFileNames": true,

0 commit comments

Comments
 (0)