chore(stories): eslint/tsconfig migration

Migrate Storybook package to eslint flat config + composite tsconfig.
This commit is contained in:
2026-06-07 16:30:05 +07:00
parent 09272dffeb
commit 23a2795523
18 changed files with 687 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
"name": "@robonen/stories",
"version": "0.0.1",
"private": true,
"license": "Apache-2.0",
"description": "Storybook for @robonen/primitives",
"type": "module",
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "storybook dev -p 6006 --no-open",
"build": "storybook build -o storybook-static"
},
"dependencies": {
"@robonen/primitives": "workspace:*",
"@robonen/vue": "workspace:*",
"vue": "catalog:"
},
"devDependencies": {
"@robonen/eslint": "workspace:*",
"@robonen/tsconfig": "workspace:*",
"@storybook/addon-a11y": "^10.2.1",
"@storybook/addon-docs": "^10.2.1",
"@storybook/vue3-vite": "^10.2.1",
"@vitejs/plugin-vue": "^6.0.6",
"eslint": "catalog:",
"storybook": "^10.2.1",
"vite": "^7.1.9"
}
}