This repository has been archived on 2024-11-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mattermost-plugin-attachmen.../webapp/babel.config.js
Md Zubair Ahmed 80fb59276d Fixes #13571 : Introduce webapp tests to mattermost-plugin-starte… (#78)
* added test setup

* added missing deps

* support for new babel config

* update enzyme types to restrict to 3.10.4 itself

Co-Authored-By: Michael Kochell <mjkochell@gmail.com>

* pkg name change

* fixed to absolute versioning for all dependencies

Co-authored-by: Michael Kochell <mjkochell@gmail.com>
2020-01-17 14:55:54 -05:00

44 lines
1.1 KiB
JavaScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
const config = {
presets: [
['@babel/preset-env', {
targets: {
chrome: 66,
firefox: 60,
edge: 42,
safari: 12,
},
modules: false,
corejs: 3,
debug: false,
useBuiltIns: 'usage',
shippedProposals: true,
}],
['@babel/preset-react', {
useBuiltIns: true,
}],
['@babel/typescript', {
allExtensions: true,
isTSX: true,
}],
],
plugins: [
'@babel/plugin-proposal-class-properties',
'@babel/plugin-syntax-dynamic-import',
'@babel/proposal-object-rest-spread',
'babel-plugin-typescript-to-proptypes',
],
};
// Jest needs module transformation
config.env = {
test: {
presets: config.presets,
plugins: config.plugins,
},
};
config.env.test.presets[0][1].modules = 'auto';
module.exports = config;