front부분(axios 있는 것) index.html 파일 내 js를 ts로 변환(진행중)
* 목표
- 이전에 배포했던 영단어 version 2(자바스크립트(js))를 타입스크립트로(ts) 변환하는 것이 목적
* 첫 번째
▶ interface 사용
문제점 : 대다수 함수에 사용된 매개변수(english, korean, type, status(간간히))가 모두 string 값이나 interface로 사용 시 js로 변환하면 사라짐
▶ 제네릭을 이용해보자 생각함
▶ ts에서 이벤트 사용하기
문제점1 : js 내 document.querySelector는 ts에서 인식되지 않음
▶ 해결책 3: https://www.typescripttutorial.net/typescript-tutorial/type-casting/
문제점2 : js 내 event.target.dataset.type을 ts에서 인식하게 하고 싶으면?
▶ 해결책 1 : https://stackoverflow.com/questions/40676343/typescript-input-onchange-event-target-value
▶ 해결책 2 : https://stackoverflow.com/questions/49631688/property-dataset-does-not-exist-on-type-eventtarget
* 문제점 : 'string | undefined' 형식의 인수는 'string' 형식의 매개 변수에 할당될 수 없습니다. 'undefined' 형식은 'string' 형식에 할당할 수 없습니다.
* 문제점 :
TypeScript : Uncaught ReferenceError: exports is not defined
https://dev-minju.tistory.com/143
index:1 Uncaught TypeError: Failed to resolve module specifier "axios". Relative references must start with either "/", "./", or "../".
'axios' 모듈을 찾을 수 없습니다. 'moduleResolution' 옵션을 'node'로 설정하거나 'paths' 옵션에 별칭을 추가하려고 하셨습니까?
▶ 현재 여기서 계속 막히는 중