mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
16 lines
269 B
JavaScript
16 lines
269 B
JavaScript
|
module.exports = {
|
||
|
presets: [
|
||
|
[
|
||
|
'react-app',
|
||
|
{
|
||
|
runtime: 'automatic',
|
||
|
typescript: true,
|
||
|
},
|
||
|
],
|
||
|
],
|
||
|
plugins: [
|
||
|
'@babel/plugin-proposal-optional-chaining',
|
||
|
'@babel/plugin-proposal-nullish-coalescing-operator',
|
||
|
],
|
||
|
};
|