Feature/setup storybook (#332)

* Setup ui library with storybook

* Add value component with story

* Update changelog
This commit is contained in:
Thomas Kaul
2021-09-04 22:12:54 +02:00
committed by GitHub
parent 4c194c938a
commit 5fd413e57e
43 changed files with 4441 additions and 184 deletions

19
libs/ui/tsconfig.lib.json Normal file
View File

@ -0,0 +1,19 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "../../dist/out-tsc",
"target": "es2015",
"declaration": true,
"declarationMap": true,
"inlineSources": true,
"types": [],
"lib": ["dom", "es2018"]
},
"exclude": [
"src/test-setup.ts",
"**/*.spec.ts",
"**/*.stories.ts",
"**/*.stories.js"
],
"include": ["**/*.ts"]
}