mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
b844a7c97c
- Remove @copilotkit/showcase-shared webpack alias from all 17 next.config.ts - Remove @copilotkit/showcase-shared tsconfig paths from all 17 tsconfig.json - Update all 17 manifest.yaml starter sections to point to showcase/starters/<slug> with Sales Dashboard name, npx degit clone command, and Railway demo URLs - Add OPENAI_BASE_URL/OPENAI_API_KEY env passthrough to all 17 playwright configs for aimock-backed e2e testing
28 lines
602 B
JSON
28 lines
602 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"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/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|