Skip to content

Commit a2f350b

Browse files
authoredNov 14, 2022
Merge pull request #174 from GetRayo/feature/modules
Welcome ESM.
2 parents 09f60c5 + e70a12d commit a2f350b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+727
-533
lines changed
 

‎.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
.nyc_support
21
coverage
2+
node_modules
33
packages/**/node_modules

‎.eslintrc.json

+12
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
55
},
66
"extends": ["airbnb-base", "plugin:prettier/recommended"],
77
"plugins": ["import", "prettier"],
8+
"parserOptions": {
9+
"ecmaVersion": 2020,
10+
"sourceType": "module"
11+
},
12+
"settings": {
13+
"import/extensions": [".js", ".mjs"],
14+
"import/resolver": {
15+
"node": {
16+
"extensions": [".js"]
17+
}
18+
}
19+
},
820
"rules": {
921
"arrow-parens": ["error", "always"],
1022
"no-underscore-dangle": "error",

0 commit comments

Comments
 (0)
Please sign in to comment.