Skip to content
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"explorer.fileNesting.expand": false,
"explorer.fileNesting.patterns": {
"package.json": "README.md,.gitignore, tsconfig.json, rome.json, dist.tsconfig.json, LICENSE.md, package-lock.json, jest-puppeteer.config.js, michi.config.ts, sandbox.config.json",
"*.tsx": "$(capture).css, $(capture).css.ts, $(capture).html, $(capture).spec.ts, $(capture).spec.tsx, $(capture).stories.tsx, types.ts, constants.ts",
"*.tsx": "$(capture).css, $(capture).css.ts, $(capture).html, $(capture).spec.ts, $(capture).spec.tsx, $(capture).stories.tsx, types.ts, constants.ts"
}
}
44 changes: 22 additions & 22 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "run",
"type": "npm",
"script": "storybook",
"group": {
"kind": "test",
"isDefault": true
},
},
{
"label": "build",
"type": "npm",
"script": "build-storybook",
"group": {
"kind": "build",
"isDefault": true
},
},
]
}
"version": "2.0.0",
"tasks": [
{
"label": "run",
"type": "npm",
"script": "storybook",
"group": {
"kind": "test",
"isDefault": true
}
},
{
"label": "build",
"type": "npm",
"script": "build-storybook",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}
3 changes: 3 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@michijs/shared-configs/biome"]
}
10 changes: 3 additions & 7 deletions dist.tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
{
"extends": "@michijs/tsconfig/tsconfig.json",
"include": [
"src"
],
"exclude" : [
"src/**/*.stories.tsx"
]
}
"include": ["src"],
"exclude": ["src/**/*.stories.tsx"]
}
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
"test-tsc-w": "tsc --noEmit --skipLibCheck -w"
},
"devDependencies": {
"@michijs/tsconfig": "0.0.5",
"@michijs/dev-server": "0.8.7",
"@michijs/shared-configs": "0.0.24",
"@michijs/storybook-utils": "8.4.7",
"@michijs/tsconfig": "0.0.5",
"@storybook/addon-a11y": "10.0.8",
"@storybook/addon-controls": "9.0.8",
"@storybook/addon-docs": "10.0.8",
Expand Down
2 changes: 1 addition & 1 deletion sandbox.config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
"port": 6006,
"disableLogging": true,
"container": { "port": 6006, "startScript": "storybook", "node": "16" }
}
}
13 changes: 3 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
{
"extends": "@michijs/tsconfig/tsconfig.json",
"include": [
".storybook",
"src"
],
"exclude": [
"node_modules",
"dist",
"build"
]
}
"include": [".storybook", "src"],
"exclude": ["node_modules", "dist", "build"]
}
Loading