Skip to content

Commit ecabecb

Browse files
committed
feat(test): migrate from jest to vitest
Signed-off-by: Adam Setch <adam.setch@outlook.com>
1 parent 01aeaab commit ecabecb

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

tsconfig.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,19 @@
44
"compilerOptions": {
55
"incremental": true,
66
"target": "ES2024",
7-
"module": "ESNext",
7+
"module": "commonjs",
88
"lib": ["ES2024", "DOM", "DOM.Iterable"],
99
"jsx": "react-jsx",
1010
"outDir": "./build/",
1111
"types": ["vitest/globals"],
1212

1313
"esModuleInterop": true,
14-
"moduleResolution": "Node",
1514
"skipLibCheck": true,
1615
"allowSyntheticDefaultImports": true,
1716
"forceConsistentCasingInFileNames": true,
1817

1918
"noUnusedLocals": true,
2019
"noUnusedParameters": true,
21-
"noFallthroughCasesInSwitch": true,
22-
23-
"resolveJsonModule": true
20+
"noFallthroughCasesInSwitch": true
2421
}
2522
}

0 commit comments

Comments
 (0)