This commit is contained in:
Mikan
2025-05-30 19:32:58 +03:00
parent 93471d038a
commit 90d12b57ec
25 changed files with 3395 additions and 180 deletions

View File

@@ -10,7 +10,7 @@
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
@@ -19,9 +19,9 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
"noUncheckedSideEffectImports": true,
"allowSyntheticDefaultImports": true
},
"include": ["src"]
}