mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-12-10 14:16:59 -06: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',
|
|
],
|
|
};
|