Bug 1685986 - Prepare to enable ESLint on gfx/wr/debugger/ where possible. r=mstange

Differential Revision: https://phabricator.services.mozilla.com/D101334
This commit is contained in:
Mark Banner 2021-01-21 18:35:57 +00:00
parent d5cb20e148
commit 9c69be2431
2 changed files with 13 additions and 3 deletions

View File

@ -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",
},
};

View File

@ -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"),
},