Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Commit

Permalink
0.0.3 fix rename
Browse files Browse the repository at this point in the history
  • Loading branch information
christianvuerings committed Oct 16, 2023
1 parent 1784626 commit a5e7843
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.0.3

- Fix rule name from `no-re-exports` to `no-re-export` (part 2)

# 0.0.2

- Fix rule name from `no-re-exports` to `no-re-export`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-plugin-no-re-export",
"version": "0.0.2",
"version": "0.0.3",
"description": "ESLint plugin to disallow re-exporting in TypeScript/JavaScript",
"main": "index.js",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"moduleResolution": "Bundler",
"moduleResolution": "NodeNext",
"target": "es5",
"module": "ES2022",
"module": "NodeNext",
"lib": ["es2023"],
"strict": true,
"sourceMap": true,
Expand Down

0 comments on commit a5e7843

Please sign in to comment.