mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
26 lines
424 B
Text
26 lines
424 B
Text
{
|
|
"presets": [
|
|
[
|
|
"@babel/env",
|
|
{
|
|
"targets": {
|
|
"node": true
|
|
}
|
|
}
|
|
],
|
|
"@babel/typescript"
|
|
],
|
|
"plugins": [
|
|
"@babel/proposal-class-properties",
|
|
"@babel/proposal-object-rest-spread"
|
|
],
|
|
"sourceMaps": true,
|
|
"retainLines": true,
|
|
|
|
// https://github.com/facebook/jest/issues/5920
|
|
"env": {
|
|
"test": {
|
|
"plugins": ["dynamic-import-node"]
|
|
}
|
|
}
|
|
}
|