반응형
tsconfig.json
전반적인 ts설정을 하는 문서
생성
tsc --init
설정
noImplicitAny
⇒ 암시적 any를 허용하지 않음
comilerOption:{
"noImplicitAny" :true,
}
strictNullChecks
⇒ null이나 undefined를 허용하지 않음
→ undefined는 객체가 아닙니다와 같은 문제 해결 가능
comilerOption:{
"strictNullCheck" :true,
}
noEmitOnError
⇒ 본래, ts는 타입체크와 컴파일이 독립적으로 시행되나, 타입에러가 발생할때 컴파일이 되지 않게 하려면 설정함
→ 런타임에는 타입체크가 불가능함
comilerOption:{
"noEmitOnError" :true,
}
반응형