add typescript and go generate
Some checks failed
Publish NPM Package / Publish Job (push) Failing after 1m39s

This commit is contained in:
lendry
2026-05-21 22:35:38 +03:00
parent b86057dfcf
commit 964fd07808
10 changed files with 105 additions and 3 deletions

11
tsconfig.build.json Normal file
View File

@@ -0,0 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"declaration": true,
"outDir": "./dist",
"types": ["node"],
"moduleResolution": "node"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "test"]
}