728x90
반응형
index.d ts란
- d.ts는 type definition 파일
- ts를 js로 컴파일하면서 추가적으로 d.ts파일도 생성함
- tsconfig.json에서 declartion 설정 필요
#tsconfig.json 생성 명령어
tsc --init
{
"declartion" : true,
"outDir" : "./output", // output에 index.js와 index.d.ts 생성
}
728x90
반응형
'Language > TypeScript' 카테고리의 다른 글
[TypeScript] overriding 오버라이딩 (0) | 2023.03.13 |
---|---|
[TypeScript] async, await, promise 비동기 처리 (0) | 2023.03.11 |
[TypeScript] 추상 클래스 abstract class, 생성자 constructor (0) | 2023.03.11 |
[TypeScript] Map 객체, TypeScript , JavaScript Map (0) | 2023.03.06 |