Skip to content

Commit

Permalink
ci: output to storybook-static
Browse files Browse the repository at this point in the history
  • Loading branch information
thebuilder committed Mar 4, 2023
1 parent f5403fd commit a3fcf3d
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.vscode
.cache
.docz
node_modules
reports
example
Expand All @@ -11,10 +10,10 @@ nuget
npm-debug.log*
.DS_store
.eslintcache
.stylelintcache
.idea
.tern
.tmp
*.log
storybook-static
test-utils.js
test-utils.d.ts
2 changes: 1 addition & 1 deletion storybook/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"main": "index.js",
"scripts": {
"dev": "storybook dev -p 9000",
"build": "storybook build --output-dir ../example"
"build": "storybook build"
},
"keywords": [],
"author": "Daniel Schmidt",
Expand Down
22 changes: 22 additions & 0 deletions storybook/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "esnext",
"target": "ESNext",
"lib": ["es6", "es7", "esnext", "dom"],
"jsx": "react",
"moduleResolution": "node",
"noImplicitReturns": true,
"strict": true,
"strictFunctionTypes": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"pretty": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"downlevelIteration": true,
"skipLibCheck": true,
"listEmittedFiles": true,
"noEmit": true
},
"exclude": ["storybook-static"]
}

0 comments on commit a3fcf3d

Please sign in to comment.