Files
agent-chat-ui/tsconfig.json

35 lines
684 B
JSON
Raw Normal View History

2025-02-18 19:35:46 +01:00
{
2025-02-26 17:09:16 -08:00
"compilerOptions": {
2025-04-10 11:47:43 -07:00
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
2025-02-26 17:09:16 -08:00
"paths": {
"@/*": ["./src/*"]
2025-04-10 11:47:43 -07:00
},
"target": "ES2017"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"src/hooks/use-threads",
"src/app/thread/[threadId]"
],
"exclude": ["node_modules"]
2025-02-18 19:35:46 +01:00
}