mirror of
https://github.com/HeyPuter/puter.git
synced 2025-12-16 18:25:21 -06:00
* 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 🚀
24 lines
471 B
JSON
24 lines
471 B
JSON
{
|
|
"extends": "./tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"allowJs": false,
|
|
"checkJs": false,
|
|
"noEmit": false
|
|
},
|
|
"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"
|
|
]
|
|
}
|