visual studio code 에서 ionic2 코드를 열었을 때에 experimentalDecorators
관련 에러가 발생하면 jsconfig.json파일을 추가 한다.
[js] Experimental support for decorators is a feature that is subject to change in a future release. Set the 'experimentalDecorators' option to remove this warning.
이와 같은 에러가 발생하면, 프로젝트 루트에 jsconfig.json
파일을 생성한다.
파일의 내용은 아래와 같다.
{
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "amd",
"target": "ES6"
}
}
'Programming > Android' 카테고리의 다른 글
[ionic] barcode scanner (0) | 2016.05.16 |
---|---|
[ionic] template 비교 (0) | 2016.05.15 |
[ionic] firebase 사용하기 (0) | 2016.05.13 |
[MIUI] 최적화 예외 등록 (0) | 2016.05.11 |
[android] 설치 할 앱 목록 정리 (0) | 2016.05.10 |
댓글