-
Notifications
You must be signed in to change notification settings - Fork 41
/
babel.config.js
46 lines (44 loc) · 1.34 KB
/
babel.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
'use strict';
// ? https://nodejs.org/en/about/releases
const NODE_LTS = 'maintained node versions';
module.exports = {
comments: false,
parserOpts: { strictMode: true },
plugins: ['@babel/plugin-proposal-export-default-from'],
// ? Sub-keys under the "env" config key will augment the above
// ? configuration depending on the value of NODE_ENV and friends. Default
// ? is: development
env: {
// * Used by Jest and `npm test`
test: {
comments: true,
sourceMaps: 'both',
presets: [
['@babel/preset-env', { targets: { node: true } }],
['@babel/preset-typescript', { allowDeclareFields: true }]
],
plugins: [
// ? Only active when testing, the plugin solves the following problem:
// ? https://stackoverflow.com/q/40771520/1367414
'explicit-exports-references'
]
},
// * Used by `npm run build` for compiling CJS to code output in ./dist
'production-cjs': {
presets: [
[
'@babel/preset-env',
{
// ? https://babeljs.io/docs/en/babel-preset-env#modules
modules: 'cjs',
targets: NODE_LTS,
useBuiltIns: 'usage',
corejs: '3.27',
shippedProposals: true
}
],
['@babel/preset-typescript', { allowDeclareFields: true }]
]
}
}
};