mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-11 11:32:27 +03:00
56cada6335
* feat: wip import csv * feat: start implementing twenty UI * feat: new radio button component * feat: use new radio button component and fix scroll issue * fix: max height modal * feat: wip try to customize react-data-grid to match design * feat: wip match columns * feat: wip match column selection * feat: match column * feat: clean heading component & try to fix scroll in last step * feat: validation step * fix: small cleaning and remove unused component * feat: clean folder architecture * feat: remove translations * feat: remove chackra theme * feat: remove unused libraries * feat: use option button to open spreadsheet & fix stories * Fix lint and fix imports --------- Co-authored-by: Charles Bochet <charles@twenty.com>
36 lines
790 B
JavaScript
36 lines
790 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
devServer: {
|
|
client: {
|
|
overlay: {
|
|
runtimeErrors: (error) => {
|
|
if (error.message === "ResizeObserver loop limit exceeded") {
|
|
return false;
|
|
}
|
|
if (error.message === "Unauthorized") {
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
},
|
|
}
|
|
},
|
|
webpack: {
|
|
alias: {
|
|
'~': path.resolve(__dirname, 'src'),
|
|
'@': path.resolve(__dirname, 'src/modules'),
|
|
'@testing': path.resolve(__dirname, 'src/testing'),
|
|
},
|
|
},
|
|
jest: {
|
|
configure: {
|
|
"moduleNameMapper": {
|
|
'~/(.+)': "<rootDir>/src/$1",
|
|
'@/(.+)': "<rootDir>/src/modules/$1",
|
|
'@testing/(.+)': "<rootDir>/src/testing/$1",
|
|
},
|
|
},
|
|
},
|
|
};
|