first commit

This commit is contained in:
creations 2025-04-22 20:01:08 -04:00
commit 5260f4ff70
Signed by: creations
GPG key ID: 8F553AA4320FC711
7 changed files with 487 additions and 0 deletions

38
tsconfig.json Normal file
View file

@ -0,0 +1,38 @@
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*": ["src/*"],
"@types/*": ["types/*"]
},
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"emitDeclarationOnly": false,
"noEmit": false,
"declaration": true,
"outDir": "./dist",
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
},
"include": ["src", "types"]
}