Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .eslintignore

This file was deleted.

16 changes: 0 additions & 16 deletions .eslintrc.js

This file was deleted.

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,18 +138,18 @@ Type:
type exposes =
| string
| {
globalName: string | Array<string>;
globalName: string | string[];
moduleLocalName?: string;
override?: boolean;
}
| Array<
| (
| string
| {
globalName: string | Array<string>;
globalName: string | string[];
moduleLocalName?: string;
override?: boolean;
}
>;
)[];
```

Default: `undefined`
Expand Down Expand Up @@ -219,7 +219,7 @@ Allows to use an object to describe an expose.
Type:

```ts
type globalName = string | Array<string>;
type globalName = string | string[];
```

Default: `undefined`
Expand Down
8 changes: 8 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
import { defineConfig } from "eslint/config";
import configs from "eslint-config-webpack/configs.js";

export default defineConfig([
{
extends: [configs["recommended-dirty"]],
},
]);
Loading
Loading