Scaffold Forgejo issue sync plugin

This commit is contained in:
Paperclip Bot 2026-06-02 02:57:49 +00:00
commit 471520e6b3
21 changed files with 1970 additions and 0 deletions

28
tsconfig.json Normal file
View file

@ -0,0 +1,28 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": [
"ES2022",
"DOM"
],
"strict": true,
"skipLibCheck": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"rootDir": ".",
"types": [
"node"
]
},
"include": [
"src",
"tests"
],
"exclude": [
"dist",
"node_modules"
]
}