Initial commit

This commit is contained in:
Endeavorance 2025-03-25 16:15:04 -04:00
commit 1baf20f6c0
9 changed files with 825 additions and 0 deletions

30
tsconfig.json Normal file
View file

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