This commit is contained in:
Evan Carroll 2026-01-21 18:19:43 -06:00
parent be60cf9a3d
commit e4abdb183f
9 changed files with 541 additions and 0 deletions

16
e2e/tsconfig.json Normal file
View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": false,
"noEmit": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules"]
}