10 lines
173 B
JavaScript
10 lines
173 B
JavaScript
module.exports = {
|
|
webpack: {
|
|
configure: webpackConfig => {
|
|
webpackConfig.ignoreWarnings = [{ module: /typescript/ }];
|
|
|
|
return webpackConfig;
|
|
}
|
|
}
|
|
};
|