Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Commit

Permalink
Merge 8a9a05f into 5ff9b7f
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Quach committed Feb 22, 2019
2 parents 5ff9b7f + 8a9a05f commit 3efa0c7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public
.env.production.local
.cache
yarn.lock
.awcache

npm-debug.log*
yarn-debug.log*
yarn-error.log*

storybook-static
11 changes: 11 additions & 0 deletions .storybook/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ module.exports = (baseConfig, env, config) => {
test: /\.(ts|tsx)$/,
exclude: /node_modules|tests/,
loader: require.resolve('awesome-typescript-loader'),
options: {
silent: true,
useCache: true,
usePrecompiledFiles: true,
transpileOnly: true,
},
})
config.resolve.extensions.push('.ts', '.tsx')

Expand All @@ -33,5 +39,10 @@ module.exports = (baseConfig, env, config) => {
})
config.resolve.extensions.push('.scss')

// Removes process logging
config.plugins = config.plugins.filter(
plugin => plugin.constructor.name !== 'ProgressPlugin'
)

return config
}

0 comments on commit 3efa0c7

Please sign in to comment.