Urara-Blog/node_modules/.pnpm-store/v3/files/24/96cd82f26f9e9bac4b02e4fcf6bd641c544e66d7c31d7e3ab37bde5102cee0897076062507a04ecb24289d683f1c5e41e78cb98220bc3655492ac70c44ae6c
2022-08-14 01:14:53 +08:00

56 lines
1.3 KiB
Text

---
description: "Disallow empty exports that don't change anything in a module file."
---
> 🛑 This file is source code, not the primary documentation location! 🛑
>
> See **https://typescript-eslint.io/rules/no-useless-empty-export** for documentation.
## Rule Details
An empty `export {}` statement is sometimes useful in TypeScript code to turn a file that would otherwise be a script file into a module file.
Per the TypeScript Handbook [Modules](https://www.typescriptlang.org/docs/handbook/modules.html) page:
> In TypeScript, just as in ECMAScript 2015, any file containing a top-level import or export is considered a module.
> Conversely, a file without any top-level import or export declarations is treated as a script whose contents are available in the global scope (and therefore to modules as well).
However, an `export {}` statement does nothing if there are any other top-level import or export statements in a file.
Examples of code for this rule:
<!--tabs-->
### ❌ Incorrect
```ts
export const value = 'Hello, world!';
export {};
```
```ts
import 'some-other-module';
export {};
```
### ✅ Correct
```ts
export const value = 'Hello, world!';
```
```ts
import 'some-other-module';
```
## Options
```jsonc
// .eslintrc.json
{
"rules": {
"@typescript-eslint/no-useless-empty-export": "warn"
}
}
```
This rule is not configurable.