Add some types and a basic test to the SDK (#4472)

This commit is contained in:
pakrym-oai
2025-09-29 19:40:08 -07:00
committed by GitHub
parent 079303091f
commit 52e591ce60
19 changed files with 3072 additions and 783 deletions

View File

@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
@@ -11,12 +11,13 @@
"noUncheckedIndexedAccess": true,
"resolveJsonModule": true,
"lib": ["ES2022"],
"types": ["node", "vitest"],
"types": ["node", "jest"],
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"noImplicitAny": true,
"outDir": "dist"
},
"include": ["src", "tests", "vitest.config.ts", "tsup.config.ts"],
"include": ["src", "tests", "tsup.config.ts"],
"exclude": ["dist", "node_modules"]
}