claude: move to typescript

This commit is contained in:
2026-03-20 13:17:47 +01:00
parent 009b6f1b08
commit d88322fe46
14 changed files with 440 additions and 341 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noUncheckedIndexedAccess": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"noEmit": true
},
"include": ["src/**/*"]
}