Files
puter/tsconfig.json
Daniel Salazar e2ae313589 feat: refactor ai to have single entry point and follow defined model structure (#2114)
* feat: refactor ai to have single entry point and follow defined model structure

* fix: missing openrouter registration

* fix: dedupe models

* feat: provide usage in stream mode 🚀
2025-12-09 15:59:21 -08:00

24 lines
541 B
JSON

{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"noEmit": true
},
"include": ["./src/backend"],
"exclude": [
"**/*.test.ts",
"**/*.test.mts",
"**/vitest.config.ts",
"**/vitest.config.mts",
"**/*.spec.ts",
"**/*.spec.mts",
"**/tests/**",
"node_modules",
"dist",
"volatile",
"extensions",
"src/backend/src/services/worker/template/puter-portable.js"
]
}