mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 01:33:54 +01:00
Only compile down imports during tests
This commit is contained in:
parent
701fba7ec7
commit
feaa74ed34
7
.babelrc
7
.babelrc
@ -1,7 +0,0 @@
|
|||||||
{
|
|
||||||
"presets": [
|
|
||||||
"@babel/preset-env",
|
|
||||||
"@babel/preset-react",
|
|
||||||
"@babel/preset-typescript"
|
|
||||||
]
|
|
||||||
}
|
|
9
babel.config.js
Normal file
9
babel.config.js
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
const TEST = process.env.NODE_ENV === "test";
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
"presets": [
|
||||||
|
"@babel/preset-react",
|
||||||
|
TEST && "@babel/preset-env",
|
||||||
|
TEST && "@babel/preset-typescript",
|
||||||
|
].filter(Boolean),
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user