diff --git a/gfx/wr/debugger/src/.eslintrc.js b/gfx/wr/debugger/src/.eslintrc.js new file mode 100644 index 000000000000..c85129a731f0 --- /dev/null +++ b/gfx/wr/debugger/src/.eslintrc.js @@ -0,0 +1,11 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +"use strict"; + +module.exports = { + parserOptions: { + sourceType: "module", + }, +}; diff --git a/gfx/wr/debugger/webpack.config.js b/gfx/wr/debugger/webpack.config.js index e1a8b226689d..aecdd9d1212a 100644 --- a/gfx/wr/debugger/webpack.config.js +++ b/gfx/wr/debugger/webpack.config.js @@ -1,3 +1,5 @@ +/* eslint-env node */ + var path = require("path"); var webpack = require("webpack"); @@ -37,9 +39,6 @@ module.exports = { ], }, resolve: { - alias: { - vue$: "vue/dist/vue.esm.js", - }, alias: { icons: path.resolve(__dirname, "node_modules/vue-material-design-icons"), },