Imported AI generated TypeScript action skeleton.

This commit is contained in:
2026-01-10 22:04:18 +01:00
commit e7d0039424
7 changed files with 291 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"outDir": "lib",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"rootDir": "src"
},
"include": ["src/**/*"]
}