Add a template for ts-jest

This commit is contained in:
Martijn Faassen
2022-05-11 12:14:55 +02:00
parent 332b634e76
commit 7bcb675dc2
11 changed files with 4787 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"types": ["jest", "@testing-library/jest-dom"],
"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
}
}