We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f2b7d3 commit beb9d12Copy full SHA for beb9d12
‎.eslintrc.js
@@ -3,7 +3,6 @@ module.exports = {
3
extends: ["eslint:recommended"],
4
parserOptions: {
5
ecmaVersion: "latest",
6
- sourceType: "module",
7
},
8
env: {
9
es6: true,
@@ -13,4 +12,12 @@ module.exports = {
13
12
"arrow-spacing": "error",
14
"object-curly-spacing": ["error", "always"]
15
+ overrides: [
16
+ {
17
+ files: ["**/*.mjs"],
18
+ parserOptions: {
19
+ sourceType: "module",
20
+ },
21
+ }
22
+ ]
23
};
‎.nvmrc
@@ -0,0 +1 @@
1
+lts/*
0 commit comments