mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-23 00:04:06 +00:00
- Set up Storybook 9.1.2 with Vue 3, PrimeVue, and Tailwind CSS support - Created comprehensive stories for settings panel components: - SettingItem: Various input types (boolean, text, number, slider, combo, color) - SettingGroup: Grouped settings with dividers and different categories - SettingsPanel: Multiple setting groups and empty states - PanelTemplate: Reusable panel layout with header/footer slots - AboutPanel: System information and project badges - SettingDialogContent: Complete dialog with responsive layouts - Updated TypeScript configuration to include Storybook files 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
455 B
JSON
23 lines
455 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
/* Test files should not be compiled */
|
|
"noEmit": true,
|
|
// "strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": [
|
|
"*.ts",
|
|
"*.mts",
|
|
"*.config.js",
|
|
"browser_tests/**/*.ts",
|
|
"scripts/**/*.js",
|
|
"scripts/**/*.ts",
|
|
"tests-ui/**/*.ts",
|
|
".storybook/**/*.ts",
|
|
"src/**/*.stories.ts"
|
|
]
|
|
}
|