first commit

This commit is contained in:
rus07tam 2026-01-07 14:47:29 +00:00
commit 8eb4fcf055
100 changed files with 28695 additions and 0 deletions

37
tsconfig.json Normal file
View file

@ -0,0 +1,37 @@
{
"compilerOptions": {
// Environment setup & latest features
"lib": [
"ESNext"
],
"target": "ESNext",
"module": "esnext",
"moduleDetection": "force",
"jsx": "react-jsx",
"resolveJsonModule": true,
// Bundler mode
"moduleResolution": "bundler",
"verbatimModuleSyntax": false,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"useUnknownInCatchVariables": true,
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// other
"outDir": "./dist",
"declaration": true,
"incremental": true
},
"include": [
"src/**/*.ts",
"test.ts"
]
}