feat: add better testing

This commit is contained in:
Samuel 2024-12-26 12:11:37 +01:00
parent e43dd2c336
commit b59f40830b
18 changed files with 1441 additions and 197 deletions

15
test/tsconfig.json Normal file
View file

@ -0,0 +1,15 @@
{
"compilerOptions": {
"strict": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"],
"noEmit": true,
"isolatedModules": true
}
}