Skip to content

Commit 5d1374a

Browse files
committed
feat(storybook): setup with simple component
1 parent c114cc9 commit 5d1374a

File tree

8 files changed

+47791
-2008
lines changed

8 files changed

+47791
-2008
lines changed

.storybook/main.js

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
module.exports = {
2+
"stories": [
3+
"../src/**/*.stories.mdx",
4+
"../src/**/*.stories.@(js|jsx|ts|tsx)"
5+
],
6+
"addons": [
7+
"@storybook/addon-links",
8+
"@storybook/addon-essentials",
9+
"@storybook/addon-interactions"
10+
],
11+
"framework": "@storybook/angular",
12+
"core": {
13+
"builder": "webpack5"
14+
}
15+
}

.storybook/preview.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { setCompodocJson } from "@storybook/addon-docs/angular";
2+
import docJson from "../documentation.json";
3+
setCompodocJson(docJson);
4+
5+
export const parameters = {
6+
actions: { argTypesRegex: "^on[A-Z].*" },
7+
controls: {
8+
matchers: {
9+
color: /(background|color)$/i,
10+
date: /Date$/,
11+
},
12+
},
13+
docs: { inlineStories: true },
14+
}

.storybook/tsconfig.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"extends": "../tsconfig.app.json",
3+
"compilerOptions": {
4+
"types": [
5+
"node"
6+
],
7+
"allowSyntheticDefaultImports": true
8+
},
9+
"exclude": [
10+
"../src/test.ts",
11+
"../src/**/*.spec.ts",
12+
"../projects/**/*.spec.ts"
13+
],
14+
"include": [
15+
"../src/**/*",
16+
"../projects/**/*"
17+
],
18+
"files": [
19+
"./typings.d.ts"
20+
]
21+
}

.storybook/typings.d.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
declare module '*.md' {
2+
const content: string;
3+
export default content;
4+
}

0 commit comments

Comments
 (0)