작성자: 박영웅 강사
담당자: 소피아 매니저님
강사 소개
개발자 소개 | HEROPY
compilerOptions 추가 옵션
강의에서는 다루지 않았던 주요 옵션들을 확인해 봅니다.
강의에서 다룬 옵션
- strict, target, lib, module, moduleResolution, esModuleInterop, paths, jsx, outDir, experimentalDecorators
- noImplicitAny, noImplicitThis, strictNullChecks, strictFunctionTypes, strictPropertyInitialization, strictBindCallApply
.removeComments
true
인 경우, 주석을 제거합니다.
기본값: false
// compilerOptions.removeComments = false
export const hi = 'Hello world';
export const hi = 'Hello world';
.noEmit
true
인 경우, 컴파일러 출력으로 JS 등의 파일이나 폴더 생성을 방지합니다.
Babel, SWC 같은 다른 도구를 사용하는 경우, 필요할 수 있습니다.
기본값: false
.allowImportingTsExtensions