Initial commit

This commit is contained in:
JB
2026-02-12 21:12:11 -05:00
commit 9023b68e66
22 changed files with 1291 additions and 0 deletions

36
tsconfig.json Normal file
View File

@@ -0,0 +1,36 @@
{
"compilerOptions": {
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"typeRoots": ["src/types", "node_modules/@types"],
// Bundler mode
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": false,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"paths": {
"@/*": ["./src/*"],
},
"composite": true,
},
"include": ["src"],
"exclude": ["node_modules", "dist", "build", "**/*.test.ts"]
}