Skip to content

Commit

Permalink
fix(eslint): simplify calling sub configurations (#53)
Browse files Browse the repository at this point in the history
Call subscripts like described in the `README.md`.
  • Loading branch information
mheob authored Sep 22, 2022
1 parent 71502b3 commit f7b87f4
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/mighty-trains-prove.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@mheob/eslint-config': patch
---

Simpplify and fix calling sub configurations
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,6 @@ coverage
out
build
dist

# changelog
CHANGELOG.md
23 changes: 23 additions & 0 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,31 @@
},
"license": "MIT",
"author": "Alexander Böhm <tools@boehm.work>",
"exports": {
".": "./dist/index.js",
"./base": "./dist/base.js",
"./next": "./dist/next.js",
"./react": "./dist/react.js",
"./package.json": "./package.json"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"./base": [
"./dist/base.d.ts"
],
"./next": [
"./dist/next.d.ts"
],
"./react": [
"./dist/react.d.ts"
]
}
},
"files": [
"dist",
"LICENSE",
Expand Down

0 comments on commit f7b87f4

Please sign in to comment.