Skip to content

Commit

Permalink
Nest.js에 데코레이터 에러 발생으로 swcrc 설정으로 추가하라
Browse files Browse the repository at this point in the history
Nest.js에는 swc전용 지원이 없어 swcrc 설정 파일을 따로 추가해야합니다.
swcrc 설정에 decorators 설정을 true 두고 decorators 메타 데이터와
레거시를 사용 할 수 있도록 true 설정해야 합니다.

seeAlso:
- https://github.com/DanielRamosAcosta/nest-class-validator-swc
- swc-project/swc#1362
  • Loading branch information
jihwooon committed Dec 18, 2023
1 parent 0da355c commit 5d1f069
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions server/.swcrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"jsc": {
"parser": {
"syntax": "typescript",
"tsx": false,
"decorators": true
},
"transform": {
"legacyDecorator": true,
"decoratorMetadata": true
},
"target": "es2018"
},
"module": {
"type": "commonjs",
"noInterop": true
}
}

0 comments on commit 5d1f069

Please sign in to comment.