mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
fd34bbfbf6
Run prettier on ~1,865 files across examples/ to match the monorepo's formatting standards. These files were imported as-is from standalone repos that used different prettier configs.
17 lines
515 B
JSON
17 lines
515 B
JSON
{
|
|
"extends": "../../packages/v1/tsconfig/base.json",
|
|
"compilerOptions": {
|
|
"strictNullChecks": true,
|
|
"outDir": "dist"
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@copilotkit/react-core/*": ["../../packages/v1/react-core/*"],
|
|
"@copilotkit/react-ui/*": ["../../packages/v1/react-ui/*"],
|
|
"@copilotkit/react-textarea/*": ["../../packages/v1/react-textarea/*"],
|
|
"@copilotkit/runtime/*": ["../../packages/v1/runtime/*"]
|
|
}
|
|
}
|