@mediatool/eslint-config-mediatool 1.11.0 → 1.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/.eslintrc.js +7 -0
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -171,6 +171,13 @@ module.exports = {
171
171
  mocha: true,
172
172
  browser: true,
173
173
  },
174
+ settings: {
175
+ 'import/resolver': {
176
+ node: {
177
+ extensions: [ '.js', '.jsx', '.ts', '.tsx', '.json' ],
178
+ },
179
+ },
180
+ },
174
181
  parserOptions: {
175
182
  ecmaVersion: 2021,
176
183
  ecmaFeatures: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mediatool/eslint-config-mediatool",
3
- "version": "1.11.0",
3
+ "version": "1.12.0",
4
4
  "main": ".eslintrc.js",
5
5
  "scripts": {
6
6
  "lint": "eslint demo/*.* examples/*.* --max-warnings 0"