typescript NestJS /类型脚本错误TS 2304-找不到名称“Get”

7gyucuyw  于 2023-01-06  发布在  TypeScript
关注(0)|答案(1)|浏览(284)

我得到这个错误编译一个文件。
[错误] 17:58:11无法编译类型脚本:源代码/main. ts(5,6):错误TS2304:找不到名称"Get"。
这是我的main.ts文件

import {Controller, Module } from "@nestjs/common";
import {NestFactory} from "@nestjs/core";
@Controller()
class AppController {
    @Get()
    getRootRoute() {
        return "Hi, there!";
    }
}

@Module({
    controllers: [AppController]
})
class AppModule {}

async function bootstrap() {
    const app = await NestFactory.create(AppModule);

    await app.listen(3000);
}
bootstrap()

相关问题