ai-sdk-next-openai/tsconfig.json
2025-09-26 15:46:29 +00:00

64 lines
1.2 KiB
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@component/*": ["./component/*"],
"@util/*": ["./util/*"]
},
"composite": true,
"noEmit": true
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"],
"references": [
{
"path": "../../packages/ai"
},
{
"path": "../../packages/rsc"
},
{
"path": "../../packages/anthropic"
},
{
"path": "../../packages/deepseek"
},
{
"path": "../../packages/fireworks"
},
{
"path": "../../packages/google"
},
{
"path": "../../packages/google-vertex"
},
{
"path": "../../packages/openai"
},
{
"path": "../../packages/perplexity"
},
{
"path": "../../packages/react"
}
]
}