feat: add initial implementation of Simple AI Provider package

This commit is contained in:
2025-05-28 11:54:24 +02:00
commit 42902445fb
15 changed files with 1616 additions and 0 deletions

21
tsconfig.build.json Normal file
View File

@ -0,0 +1,21 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"noEmit": false,
"emitDeclarationOnly": true,
"declaration": true,
"outDir": "./dist",
"moduleResolution": "node",
"verbatimModuleSyntax": false
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist",
"tests",
"**/*.test.ts",
"**/*.spec.ts"
]
}