Basics, Setup, Launcher

This commit is contained in:
2024-12-09 06:35:03 +01:00
parent 71d19456f2
commit b84ffa4864
7 changed files with 869 additions and 1 deletions

23
tsconfig.json Normal file
View File

@@ -0,0 +1,23 @@
{
"compilerOptions": {
"lib": ["ESNext", "DOM"],
"target": "es2022",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"skipLibCheck": true,
// strictness
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"checkJs": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
}
}