Initial commit: Ollama Personal Trainer & Unsloth MoE Orchestrator Studio

This commit is contained in:
drjones
2026-08-13 15:13:15 -07:00
parent 25a8af8d4e
commit 09a81cf994
64 changed files with 15859 additions and 43 deletions

26
studio-ref/tsconfig.json Normal file
View File

@@ -0,0 +1,26 @@
{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": true,
"jsx": "react-jsx",
"paths": {
"@/*": [
"./*"
]
},
"allowImportingTsExtensions": true,
"noEmit": true
}
}