build: migrate to Typescript + biome

This commit is contained in:
2026-03-27 17:33:58 +05:30
parent 3f0c4c217a
commit b6dbcfe91a
12 changed files with 466 additions and 204 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"noEmitOnError": true,
"resolveJsonModule": true,
"outDir": "./dist",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "dist"]
}