mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-07-22 23:44:11 +00:00
* feat(web-shell): add shadcn UI foundation * fix(web-shell): address shadcn foundation review * revert(web-shell): keep generated shadcn components unchanged * fix(web-shell): activate dark theme and vertical navigation --------- Co-authored-by: ytahdn <ytahdn@gmail.com>
25 lines
503 B
JSON
25 lines
503 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./client/*"]
|
|
},
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"noEmit": true
|
|
},
|
|
"include": ["client/**/*.ts", "client/**/*.tsx"],
|
|
"exclude": [
|
|
"client/**/*.test.ts",
|
|
"client/**/*.test.tsx",
|
|
"client/e2e/**",
|
|
"client/test/**",
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|