-
Notifications
You must be signed in to change notification settings - Fork 44
/
babel.config.js
93 lines (88 loc) · 1.91 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
const process = require('process')
const pkg = require('./package.json')
module.exports = function (api, ...args) {
api.cache(true)
if (!process.env.BUILD_VERSION) {
process.env.BUILD_VERSION = process.env.VERSION_OVERRIDE || pkg.version
}
if (!process.env.BUILD_ENV) {
process.env.BUILD_ENV = 'CDN'
}
process.env.RRWEB_VERSION = pkg.dependencies.rrweb
const ignore = [
'**/__mocks__/*.js'
]
const presets = [
'@babel/preset-env'
]
const plugins = [
// Replaces template literals with concatenated strings. Some customers enclose snippet in backticks when
// assigning to a variable, which conflicts with template literals.
'@babel/plugin-transform-template-literals',
// Replaces `process.env.*` environment variables with actual values.
[
'transform-inline-environment-variables',
{
include: ['BUILD_VERSION', 'BUILD_ENV', 'RRWEB_VERSION']
}
],
// Support import `with` attribute for json
'@babel/plugin-syntax-import-attributes'
]
const env = {
test: {
presets: [
[
'@babel/preset-env',
{
modules: 'commonjs'
}
]
]
},
webpack: {
ignore
},
'npm-cjs': {
ignore,
presets: [
[
'@babel/preset-env', {
modules: 'commonjs'
}
]
],
plugins: [
[
'./tools/babel/plugins/transform-import',
{
'(/constants/|^\\./)env$': '$1env.npm'
}
]
]
},
'npm-esm': {
ignore,
presets: [
[
'@babel/preset-env', {
modules: false
}
]
],
plugins: [
[
'./tools/babel/plugins/transform-import',
{
'(/constants/|^\\./)env$': '$1env.npm'
}
]
]
}
}
return {
presets,
plugins,
env
}
}