2019-03-16 13:23:21 +08:00

11 lines
258 B
JavaScript

const path = require('path');
module.exports = async ({ config }) => {
config.module.rules.push({
test: /\.tsx?$/,
include: path.resolve(__dirname, '../src'),
use: [require.resolve('react-docgen-typescript-loader')],
});
return config;
};