mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
a972705ce6
* Improve test coverage and refactor storybook arch * Fix coverage * Fix tests * Fix lint * Fix lint
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
webpackFinal: config => {
|
|
config.module.rules.push({
|
|
test: /\.tsx?$/,
|
|
exclude: /node_modules/,
|
|
use: [{
|
|
loader: require.resolve('babel-loader'),
|
|
options: {
|
|
presets: [require('@babel/preset-typescript').default, [require('@babel/preset-react').default, {
|
|
runtime: 'automatic'
|
|
}], require('@babel/preset-env').default]
|
|
}
|
|
}]
|
|
});
|
|
config.resolve.extensions.push('.ts', '.tsx');
|
|
config.module.rules.push({
|
|
test: /\.mjs$/,
|
|
include: /node_modules/,
|
|
type: 'javascript/auto'
|
|
});
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
use: [
|
|
{
|
|
loader: '@svgr/webpack'
|
|
},
|
|
{
|
|
loader: 'file-loader',
|
|
options: {
|
|
name: 'static/media/[path][name].[ext]'
|
|
}
|
|
}
|
|
],
|
|
type: 'javascript/auto',
|
|
issuer: {
|
|
and: [/\.(ts|tsx|js|jsx|md|mdx)$/]
|
|
}
|
|
});
|
|
config.resolve.extensions.push('.mjs');
|
|
config.resolve.alias = {
|
|
...config.resolve.alias,
|
|
'~': path.resolve(__dirname, "../src"),
|
|
'@': path.resolve(__dirname, "../src/modules"),
|
|
};
|
|
return config;
|
|
},
|
|
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
|
|
addons: [
|
|
"@storybook/addon-links",
|
|
"@storybook/addon-essentials",
|
|
"@storybook/addon-interactions",
|
|
"@storybook/addon-coverage",
|
|
"@storybook/addon-styling",
|
|
"@storybook/addon-knobs",
|
|
"storybook-addon-pseudo-states",
|
|
"storybook-addon-cookie",
|
|
],
|
|
framework: {
|
|
name: '@storybook/react-webpack5',
|
|
options: {}
|
|
},
|
|
}; |