Skip to content

Commit a92df6e

Browse files
committed
refactor!: drop cjs support
1 parent 9614e3a commit a92df6e

18 files changed

+1705
-590
lines changed

.eslintrc.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,15 @@
99
"@typescript-eslint/no-use-before-define": "off",
1010
"no-use-before-define": "off"
1111
},
12+
"parser": "@babel/eslint-parser",
1213
"parserOptions": {
13-
"project": "./tsconfig.json"
14+
"requireConfigFile": false,
15+
"sourceType": "module",
16+
"project": "./tsconfig.json",
17+
"ecmaVersion": 2020,
18+
"ecmaFeatures": {
19+
"modules": true
20+
}
1421
},
1522
"ignorePatterns": ["tests/**"]
1623
}

0 commit comments

Comments
 (0)