Adds a new FeatureType.AiCreditSystem that enables model-based token pricing with per-model markup configuration. Includes the @useautumn/ai-sdk package for Vercel AI SDK integration with automatic token tracking. Co-authored-by: TheUntraceable <73362400+TheUntraceable@users.noreply.github.com>
20 lines
428 B
JSON
20 lines
428 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"esModuleInterop": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2022",
|
|
"moduleResolution": "NodeNext",
|
|
"module": "NodeNext",
|
|
"declaration": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"outDir": "dist",
|
|
"lib": ["ES2022"],
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["dist", "node_modules"]
|
|
}
|