Programming Skills/ETC
ETC - vscode 에서 experimentalDecorators warning 와 같은 에러 뜰때 해결방법
Ideveloper2
2018. 8. 15. 20:30
ETC
:vscode 에서 experimentalDecorators warning 와 같은 에러 뜰때 해결방법
| 시작하기에 앞서
mobx를 사용하다보면 위와 같은 decorator 문법을 쓸때가 많은데, 그때 vscode에서는 에러가 뜬다. 이를 해결하는 방법은 아래와 같다.
| 해결방법
root 폴더에 tsconfig.json 파일을 만들어 아래와 같은 코드를 넣으면 해결된다.
{
"compilerOptions": {
"experimentalDecorators": true,
"allowJs": true
}
}