입력:22/12/26수정:24/01/05
Cannot use import statement outside a module 에러
문제점/의도
위 명령어 호출시 아래와같은 에러 발생
SWCRC=true node -r @swc-node/register src/run.ts
Cannot use import statement outside a module
원인
import outside문제는 대부분 ES6와 관련된 문제로 type을 module로 해주어야 해결됨
해결
tsconfig.json에 아래 추가해주기
{
"ts-node": {
"compilerOptions": {
"module": "commonjs"
}
}
}
근데 위에처럼하면 또 문제가 생김 바로
Unexpected token 'export'