Fixed types generation

This commit is contained in:
2025-07-15 17:39:24 +02:00
parent 7fdefba622
commit c6e02087c8
4 changed files with 34 additions and 4 deletions

View File

@@ -2,11 +2,13 @@
"compilerOptions": {
"target": "ES6",
"module": "ES6",
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": true,
"skipLibCheck": true
"skipLibCheck": true,
"outDir": "./dist"
},
"include": ["src"]
}