ts-unused-exports的ESLint包装器 安装 此插件要求您的项目使用TypeScript(> = 4.1.3)。 yarn add eslint-plugin-ts-exports --dev 配置示例 该插件依靠TypeScript编译器服务来解析类型。 您需要通过parserOptions在eslint配置中设置tsconfig.json文件。 { " plugins " : [ " ts-exports " ], " parserOptions " : { " project " : " ./tsconfig.json " }, " rules " : { " ts-exports/unused-exports " : 2 , } } 规则