일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 전역변수
- 문서번호
- TS
- ZOOM
- 10px
- literal
- npm
- 서버리스 #
- 0.75px border
- ES5
- github
- entity
- TypeScript
- 0.5px border
- 클론코딩
- 데이터베이스 #try #이중
- 0.25px border
- &연산
- readonly
- Websocket
- Strict
- Props
- 1px border
- 당근마켓
- font-size
- es6
- jwt
- 컴포넌튼
- angular
- 타입스크립트
- Today
- Total
목록TS (2)
복잡한뇌구조마냥

7. readonly type Girlfriend = { readonly name: string } - readonly 키워드는 속성 왼쪽에 붙일 수 있으며 특정 속성을 변경불가능하게 잠궈줍니다. - const 변수는 값이 변하지 않는 변수를 만들고 싶을 때 const 쓰면 됩니다. const랑 비슷한 효과 var 자료 = { name: "kim" } as const // object value값을 그대로 타입으로 지정해줌 // object의 속성들에 모두 readonly를 붙여줌 - as를 통해 const를 단언하여 readonly 를 붙여주도록 설정 가능 8. type & 연산 type PositionX = { x: number, y: number }; type PositionY = { y: numb..

0. tsconfig.json { "compilerOptions": { "target": "es5", // 'es3', 'es5', 'es2015', 'es2016', 'es2017','es2018', 'esnext' 가능 "module": "commonjs", //무슨 import 문법 쓸건지 'commonjs', 'amd', 'es2015', 'esnext' "allowJs": true, // js 파일들 ts에서 import해서 쓸 수 있는지 "checkJs": true, // 일반 js 파일에서도 에러체크 여부 "jsx": "preserve", // tsx 파일을 jsx로 어떻게 컴파일할 것인지 'preserve', 'react-native', 'react' "declaration": true, ..