Typeorm - Cannot use import statement outside a module
February 28, 2022 · 2 min read
IN NestJS application, Created an Custom Entity and corresponding Controller, Service and started an application, got an below error during startup. TypeORM Entity in NESTJS - Cannot use import statement outside a module import { Entity, Column, PrimaryGeneratedColumn } from ’typeorm’; ^^^^^^ SyntaxError: Cannot use import statement outside a module at wrapSafe (internal/modules/cjs/loader.js:984:16) at Module._compile (internal/modules/cjs/loader.js:1032:27) at Object.Module._extensions..js (internal/modules/cjs/loader.js:1097:10) at Module.load (internal/modules/cjs/loader.js:933:32) at Function.Module._load (internal/modules/cjs/loader.js:774:14) at Module.require (internal/modules/cjs/loader.js:957:19) at require (internal/modules/cjs/helpers....