Skip to content

Commit

Permalink
refactor!: drop cjs support
Browse files Browse the repository at this point in the history
  • Loading branch information
thepiwo committed Nov 20, 2024
1 parent 9614e3a commit a92df6e
Show file tree
Hide file tree
Showing 18 changed files with 1,705 additions and 590 deletions.
9 changes: 8 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,15 @@
"@typescript-eslint/no-use-before-define": "off",
"no-use-before-define": "off"
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"project": "./tsconfig.json"
"requireConfigFile": false,
"sourceType": "module",
"project": "./tsconfig.json",
"ecmaVersion": 2020,
"ecmaFeatures": {
"modules": true
}
},
"ignorePatterns": ["tests/**"]
}
Loading

0 comments on commit a92df6e

Please sign in to comment.