mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 09:30:31 +03:00
15 lines
269 B
JavaScript
15 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',
|
|
],
|
|
};
|