Add TS wrapper package

This commit is contained in:
Andras Schmelczer 2025-07-04 02:11:16 +01:00
commit f0ff720577
6 changed files with 5162 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"strict": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "bundler",
"declaration": true,
"declarationDir": "./dist/types"
},
"exclude": [
"./dist"
]
}