11. 실습(전화번호부)
//tsconfig.json { "compilerOptions": { "allowJs": true, "checkJs": true, "target": "es5", "lib": ["es2015", "dom", "dom.iterable"], "noImplicitAny": true, //false에서 true로 수정. "strict": true, //추가 "strictFunctionTypes": true, //추가 }, "include": ["./src/**/*"] } 기본셋팅 interface PhoneNumberDictionary { [phone: string]: { num: number; }; } interface Contact { name: string; address: string; phones: Ph..
2023. 5. 7.