Initial commit

This commit is contained in:
David Ibia
2026-01-12 13:20:27 +01:00
commit 3a56870ff5
7 changed files with 440 additions and 0 deletions

12
tsconfig.json Normal file
View File

@@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"strict": true,
"noEmit": true,
"types": ["node"],
"skipLibCheck": true
},
"include": ["index.ts", ".opencode/plugin/**/*.ts"]
}