Initial Commit

* Initialize project with essential configuration files including
** .gitignore
** .npmrc
** .nvmrc
** .prettierrc
** bunfig.toml
** eslint.config.ts
** package.json
** README.md
** tsconfig.json
This commit is contained in:
2025-11-21 02:38:36 -05:00
commit ab34b614dd
9 changed files with 130 additions and 0 deletions

29
tsconfig.json Normal file
View File

@@ -0,0 +1,29 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "Preserve",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noUnusedParameters": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noPropertyAccessFromIndexSignature": false
}
}