From 670546b8a284bee51f63f00dabcf89b9ea463e68 Mon Sep 17 00:00:00 2001 From: Andinus Date: Sun, 5 Sep 2021 22:23:27 +0530 Subject: JS: Luhn: Add solution --- javascript/luhn/babel.config.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 javascript/luhn/babel.config.js (limited to 'javascript/luhn/babel.config.js') diff --git a/javascript/luhn/babel.config.js b/javascript/luhn/babel.config.js new file mode 100644 index 0000000..5f1ec60 --- /dev/null +++ b/javascript/luhn/babel.config.js @@ -0,0 +1,15 @@ +module.exports = { + presets: [ + [ + '@babel/preset-env', + { + targets: { + node: 'current', + }, + useBuiltIns: 'entry', + corejs: '3.17', + }, + ], + ], + plugins: ['@babel/plugin-syntax-bigint'], +}; -- cgit 1.4.1-2-gfad0