Development/JavaScript,TypeScript

    swc: failed to process input file

    발단 기존 tsc를 사용하다 swc로 마이그레이션 하는 작업에서 에러가 발생하였다. failed to process input file Caused by: 0: failed to read swcrc file (src/talk/channel/talk-channel-session.ts) 1: failed to deserialize .swcrc (json) file: unmatched data: 0:0 2: data did not match any variant of untagged enum FileMatcher 당시 .swcrc는 다음과 같은 상태였다. 해결 방법 2번째 줄을 다음과 같이 변경한다. exclude: ["node_modules", "dist"], 원인 다시 앞으로 돌아와서, 이 문제는 tsco..