2017-12-11 23:52:46 +08:00
|
|
|
/**
|
2022-10-18 11:19:24 -04:00
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
2017-12-11 23:52:46 +08:00
|
|
|
*
|
|
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
|
|
|
|
*/
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
// Files that are transformed and can use ES6/Flow/JSX.
|
|
|
|
|
const esNextPaths = [
|
|
|
|
|
// Internal forwarding modules
|
|
|
|
|
'packages/*/*.js',
|
2020-11-16 23:46:27 -05:00
|
|
|
'packages/*/esm/*.js',
|
2021-10-31 18:38:03 -04:00
|
|
|
'packages/use-sync-external-store/shim/**/*.js',
|
|
|
|
|
'packages/use-sync-external-store/with-selector/**/*.js',
|
2017-12-11 23:52:46 +08:00
|
|
|
// Source files
|
|
|
|
|
'packages/*/src/**/*.js',
|
2019-12-20 16:35:02 +00:00
|
|
|
'packages/dom-event-testing-library/**/*.js',
|
2017-12-11 23:52:46 +08:00
|
|
|
'packages/shared/**/*.js',
|
|
|
|
|
// Shims and Flow environment
|
|
|
|
|
'scripts/flow/*.js',
|
|
|
|
|
'scripts/rollup/shims/**/*.js',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// Files that we distribute on npm that should be ES5-only.
|
|
|
|
|
const es5Paths = ['packages/*/npm/**/*.js'];
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
|
esNextPaths,
|
|
|
|
|
es5Paths,
|
|
|
|
|
};
|