"outDir": "./dist"
"rootDir": "./src"
// "removeComments": true,
타입스크립트에서 변수 앞이 아닌 뒤에 느낌표(!)를 사용하면 피연산자가 null이나 undefined값이 아님을 단언할 수 있다.
const button = document.getElementById("button")!;
button.addEventListener('click', ()=>{
})
타입스크립트에서 물음표(?)는 접근하는 객체의 프로퍼티가 null 또는 undefined일 수 있는 optional property인 경우 if문을 사용하지 않고 넘어가게 하는 체이닝을 하는데 쓰인다
const button = document.getElementById("button");
button?.addEventListener('click', ()=>{
})