forked from karlprieb/babel-plugin-add-import-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
babel.config.js
71 lines (67 loc) · 1.98 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
'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';
// TODO: replace with 'package'
const pkgName = require('./package.json').name;
const debug = require('debug')(`${pkgName}:babel-config`);
debug('NODE_ENV: %O', process.env.NODE_ENV);
/**
* @type {import('@babel/core').TransformOptions}
*/
module.exports = {
comments: false,
parserOpts: { strictMode: true },
plugins: [
'@babel/plugin-proposal-export-default-from',
'@babel/plugin-syntax-import-assertions'
],
// ? 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: 'inline',
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 }]
],
plugins: [
[
'babel-plugin-transform-rewrite-imports',
{
replaceExtensions: {
'^../package.json$': '../../package.json'
}
}
]
]
}
}
};
debug('exports: %O', module.exports);