39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"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"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@copilotkit/react-core": [
|
|
"../CopilotKit/CopilotKit/packages/react-core/dist"
|
|
],
|
|
"@copilotkit/shared": ["../CopilotKit/CopilotKit/packages/shared/dist"],
|
|
"@copilotkit/react-ui": [
|
|
"../CopilotKit/CopilotKit/packages/react-ui/dist"
|
|
],
|
|
"@copilotkit/react-ui/*": [
|
|
"../CopilotKit/CopilotKit/packages/react-ui/dist/*"
|
|
],
|
|
"@copilotkit/runtime": ["../CopilotKit/CopilotKit/packages/runtime/dist"]
|
|
},
|
|
"target": "ES2017"
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|