From 7ae68f079ddfb74c9a1b17c4f30dfe4c258d4a9f Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Fri, 20 Dec 2019 17:47:04 +0100 Subject: Viewer project foundations --- viewer/babel.config.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 viewer/babel.config.js (limited to 'viewer/babel.config.js') diff --git a/viewer/babel.config.js b/viewer/babel.config.js new file mode 100644 index 0000000..162a3ea --- /dev/null +++ b/viewer/babel.config.js @@ -0,0 +1,3 @@ +module.exports = { + presets: ["@vue/cli-plugin-babel/preset"], +}; -- cgit v1.2.3 From 7c2576b0cfb0a15b2a14f6f5ea96de16f0c23b44 Mon Sep 17 00:00:00 2001 From: Zero~Informatique Date: Tue, 24 Dec 2019 02:22:56 +0100 Subject: viewer: Plugin for Optional chaining and Coalesce. Implemented tag operations (intersection, addition, substraction). Unified Tag.Search --- viewer/babel.config.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'viewer/babel.config.js') diff --git a/viewer/babel.config.js b/viewer/babel.config.js index 162a3ea..7102a6e 100644 --- a/viewer/babel.config.js +++ b/viewer/babel.config.js @@ -1,3 +1,7 @@ module.exports = { presets: ["@vue/cli-plugin-babel/preset"], + plugins: [ + '@babel/plugin-proposal-optional-chaining', + '@babel/plugin-proposal-nullish-coalescing-operator', + ], }; -- cgit v1.2.3