Created
May 20, 2020 05:22
-
-
Save konstantindenerz/66e2a0d6e50292f234efa86c4b8cb8a7 to your computer and use it in GitHub Desktop.
Sample storybook angular project configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"storybook": { | |
"root": "", | |
"sourceRoot": "src", | |
"projectType": "application", | |
"prefix": "app", | |
"schematics": {}, | |
"architect": { | |
"build": { | |
"builder": "@angular-devkit/build-angular:browser", | |
"options": { | |
"outputPath": "dist", | |
"index": "", | |
"main": "", | |
"polyfills": "", | |
"tsConfig": "src/{{FOLDERNAME}}/tsconfig.lib.json", | |
"assets": [ | |
], | |
"styles": [ | |
"node_modules/material-design-icons/iconfont/material-icons.css", | |
"src/lib/styles.less" | |
], | |
"scripts": [], | |
"stylePreprocessorOptions": { | |
"includePaths": [ | |
"src/lib/styles/common" | |
] | |
} | |
}, | |
"configurations": { | |
} | |
}, | |
"serve": { | |
"builder": "@angular-devkit/build-angular:dev-server", | |
"options": { | |
"browserTarget": "storybook:build" | |
} | |
} | |
} | |
}, |
Project name should be storybook
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
{{FOLDERNAME}}
replace with your application / library name