Cannot use import statement outside a module
nestjs에서 webpack Hot reload적용하려했는데, 자꾸 아래와 같은 오류가..
처음엔 src폴더에 webpack config를 만들어놔서 1시간 동안 뻘짓했는데..
정신을 놓고 있으니까 별거 아닌 거에도 문제가 생긴다.
import를 외부에서 사용해서 생긴 문제였다.
/* eslint-disable prettier/prettier */
/* eslint-disable @typescript-eslint/no-var-requires */
const nodeExternals = require('webpack-node-externals');
const { RunScriptWebpackPlugin } = require('run-script-webpack-plugin');
이런 식으로 eslint에서 ES6모듈 자동변환하는거 무시해주고 requrie로 사용해주면 되겠다.