Skip to content

Commit a3fcf3d

Browse files
committed
ci: output to storybook-static
1 parent f5403fd commit a3fcf3d

File tree

3 files changed

+24
-3
lines changed

3 files changed

+24
-3
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
.vscode
22
.cache
3-
.docz
43
node_modules
54
reports
65
example
@@ -11,10 +10,10 @@ nuget
1110
npm-debug.log*
1211
.DS_store
1312
.eslintcache
14-
.stylelintcache
1513
.idea
1614
.tern
1715
.tmp
1816
*.log
17+
storybook-static
1918
test-utils.js
2019
test-utils.d.ts

storybook/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"main": "index.js",
66
"scripts": {
77
"dev": "storybook dev -p 9000",
8-
"build": "storybook build --output-dir ../example"
8+
"build": "storybook build"
99
},
1010
"keywords": [],
1111
"author": "Daniel Schmidt",

storybook/tsconfig.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"compilerOptions": {
3+
"module": "esnext",
4+
"target": "ESNext",
5+
"lib": ["es6", "es7", "esnext", "dom"],
6+
"jsx": "react",
7+
"moduleResolution": "node",
8+
"noImplicitReturns": true,
9+
"strict": true,
10+
"strictFunctionTypes": true,
11+
"suppressImplicitAnyIndexErrors": true,
12+
"noUnusedLocals": true,
13+
"pretty": true,
14+
"allowSyntheticDefaultImports": true,
15+
"esModuleInterop": true,
16+
"downlevelIteration": true,
17+
"skipLibCheck": true,
18+
"listEmittedFiles": true,
19+
"noEmit": true
20+
},
21+
"exclude": ["storybook-static"]
22+
}

0 commit comments

Comments
 (0)