Frontend/TS
2022. 11. 21.
[TS] tsconfig.json,정의 파일(d.ts),JSDocs
tsconfig.json파일, 정의 파일(d.ts)과 JSDocs에 대해 공부한 기록을 남기려고 한다. tsconfig.json 먼저 프로젝트를 생성해준다. $ npm init -y 그리고 tsconfig.json 파일을 생성해준다. //tsconfig.json { "include": ["src"], "compilerOptions": { "outDir": "build", "target": "es6", "lib": ["es6"], } } include include는 JS로 컴파일하고 싶은 디렉터리를 지정할 수 있는 배열이다. 컴파일하고자 하는 TS 파일들이 있는 모든 디렉터리를 의미한다. compilerOptions 해당 객체는 이름 그대로 컴파일 옵션이다. outDir outDir는 JS파일이 생성될 ..