@Module()装饰器中的“模块”键已被弃用。

时间:2018-06-30 07:53:13

标签: nestjs

运行nestjs应用程序,控制台显示:

WARNING!!
The "modules" key in the @Module() decorator is deprecated and will be removed within next major release. Use the "imports" key instead. 

我的模块声明如下:

@Module({
    imports: [UserModule],
    providers: [AuthService, JwtStrategy],
    controllers: [AuthController]
})
export class AuthModule {}

我还对单词modules执行了“查找路径”,以确保我的代码中没有modules

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我在较旧版本的NestJ上遇到此问题。升级package.json有所帮助。 确保对所有@ nestjs / *软件包使用最新版本^ 5.0.0。