Add unite test

This commit is contained in:
2024-10-11 15:06:31 +02:00
parent c963758a06
commit 2d488a75eb
13 changed files with 1847 additions and 39 deletions

View File

@@ -1,6 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"target": "esnext",
"module": "esnext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
@@ -8,12 +9,13 @@
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react"
"jsx": "react-jsx",
"baseUrl": "./src"
},
"include": ["src"]
}