运行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
。
有什么想法吗?
答案 0 :(得分:1)
我在较旧版本的NestJ上遇到此问题。升级package.json有所帮助。 确保对所有@ nestjs / *软件包使用最新版本^ 5.0.0。