-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbabel.config.js
117 lines (112 loc) · 3.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
'use strict';
// * Every now and then, we adopt best practices from CRA
// * https://tinyurl.com/yakv4ggx
// ? https://nodejs.org/en/about/releases
const NODE_LTS = 'maintained node versions';
const pkgName = require('./package.json').name;
const debug = require('debug')(`${pkgName}:babel-config`);
const { determineModuleTypes } = require('webpack-node-module-types/sync');
// ? Fix relative local imports referencing package.json (.dist/bundle/...)
const transformRenameImport = [
'transform-rename-import',
{
// ? See: https://bit.ly/38hFTa8
replacements: [{ original: 'package', replacement: `${pkgName}/package.json` }]
}
];
debug('NODE_ENV: %O', process.env.NODE_ENV);
module.exports = {
parserOpts: { strictMode: true },
plugins: [
'@babel/plugin-proposal-export-default-from',
'@babel/plugin-proposal-function-bind',
'@babel/plugin-proposal-nullish-coalescing-operator',
'@babel/plugin-transform-typescript',
// ? Interoperable named CJS imports for free
[
'transform-default-named-imports',
{
include: ['package']
}
]
],
// ? 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: {
sourceMaps: 'both',
presets: [
['@babel/preset-env', { targets: { node: true } }],
['@babel/preset-typescript', { allowDeclareFields: true }]
// ? We don't care about minification
],
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`
production: {
presets: [
[
'@babel/preset-env',
{
// ? https://github.com/babel/babel-loader/issues/521#issuecomment-441466991
//modules: false,
targets: NODE_LTS
}
],
['@babel/preset-typescript', { allowDeclareFields: true }]
// ? Minification is handled by Webpack
]
},
// * Used by `npm run build-externals`
external: {
presets: [
['@babel/preset-env', { targets: { node: true } }],
['@babel/preset-typescript', { allowDeclareFields: true }]
// ? Minification is handled by Webpack
],
plugins: [transformRenameImport]
},
// * Used for compiling ESM code output in ./dist/esm
esm: {
presets: [
[
'@babel/preset-env',
{
// ? https://babeljs.io/docs/en/babel-preset-env#modules
modules: false,
targets: NODE_LTS
}
],
['@babel/preset-typescript', { allowDeclareFields: true }]
// ? Minification is handled by Webpack
]
},
// * Used for compiling ESM code output in .dist/bundle
bundle: {
presets: [
[
'@babel/preset-env',
{
// ? https://babeljs.io/docs/en/babel-preset-env#modules
modules: false,
targets: NODE_LTS
}
],
['@babel/preset-typescript', { allowDeclareFields: true }]
// ? The end user will handle minification
],
plugins: [
// ? Ensure all local imports without extensions now end in .mjs
['add-import-extension', { extension: 'mjs' }],
transformRenameImport
]
}
}
};
debug('exports: %O', module.exports);