Reviewed By: adamjernst Differential Revision: D45725703 fbshipit-source-id: efab6e4a84888178066be723ebb7915830792791
16 lines
328 B
JavaScript
16 lines
328 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env', {targets: 'defaults'}],
|
|
'@babel/preset-typescript',
|
|
],
|
|
};
|