✅ tsconfing.json 에서 엄격한 유형 검사 설정하기 { "compilerOptions": { "target": "es5", "module": "commonjs", "strict": true 👈 //모든 엄격한 유형 검사 옵션 활성화 } } *엄격한 유형 검사 옵션 "noImplicitAny": true //명시적이지 않은 'any' 유형으로 표현식 및 선언 사용 시 오류 발생 "strictNullChecks": true //엄격한 null 검사 사용 "strictFunctionTypes": true //엄격한 함수 유형 검사 사용 "strictBindCallApply": true //엄격한 'bind', 'call', 'apply' 함수 메서드 사용 "strictPropertyInitializ..