Fix "angular-cli/.storybook/webpack.config.ts"

This commit is contained in:
igor-dv 2018-12-05 12:48:07 +02:00
parent 1790d3b315
commit 0c9837c96d

View File

@ -1,7 +1,9 @@
const path = require('path');
module.exports = (baseConfig: any) => {
baseConfig.module.rules.push({
module.exports = {
module: {
rules: [
{
test: [/\.stories\.tsx?$/, /index\.ts$/],
loaders: [
{
@ -13,7 +15,7 @@ module.exports = (baseConfig: any) => {
],
include: [path.resolve(__dirname, '../src')],
enforce: 'pre',
});
return baseConfig;
},
],
},
};