[design]: initialize design system

This commit is contained in:
41666 2019-05-20 00:57:55 -04:00
parent 6fb39d6c4d
commit b864df9393
No known key found for this signature in database
GPG key ID: BC51D07640DC10AF
14 changed files with 391 additions and 0 deletions

View file

@ -0,0 +1,16 @@
module.exports = ({ config }) => {
config.module.rules.push({
test: /\.(ts|tsx)$/,
use: [
{
loader: require.resolve('awesome-typescript-loader'),
},
// Optional
{
loader: require.resolve('react-docgen-typescript-loader'),
},
],
});
config.resolve.extensions.push('.ts', '.tsx');
return config;
};