qwen-code/packages/web-shell/tsconfig.json
ytahdn 39e3bc0f40
feat(web-shell): add shadcn UI foundation (#6760)
* 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>
2026-07-12 13:51:52 +00:00

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"
]
}