Fix tsconfig and test folder

This commit is contained in:
2026-03-13 00:28:48 +05:30
parent e913bff33c
commit 814bbc41a7
4 changed files with 35 additions and 8 deletions
+26
View File
@@ -0,0 +1,26 @@
{
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"types": [
"bun-types"
]
},
"include": ["**/*.ts", "**/*.tsx"]
}