- Import and mount OrchUsagePill near the recipe level selector in RecipesView; pill is self-hiding when not enabled or no lifetime key is present - Add useOrchUsage composable to SettingsView with a Display section checkbox so users can opt in to seeing the cloud recipe call budget pill - Add @/ path alias to vite.config.ts and tsconfig.app.json to resolve the existing @/services/api import in useOrchUsage.ts (fixes vite build error) - tsc --noEmit and vite build both pass clean
20 lines
519 B
JSON
20 lines
519 B
JSON
{
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"types": ["vite/client"],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
|
|
}
|