TSC Array#fill

ty

typeulli
질문 종료
- XP

npx tsc로 다음 코드를 변경하는데 오류가 발생합니다.

error TS2550: Property 'fill' does not exist on type 'any[]'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2015' or later.
Array(object.files.length).fill(0).map((_, i) => object.files?.item(i)).filter(value => value !== null && value !== undefined).forEach(file => fileLoader.readAsDataURL(file as Blob))


불러오는 중...