Initial commit

This commit is contained in:
2025-10-27 11:17:29 +01:00
commit f88d870db5
14 changed files with 4423 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"extends": "@apify/tsconfig",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"outDir": "dist",
"noUnusedLocals": false,
"lib": ["DOM"]
},
"include": ["./src/**/*"]
}