?
사용자

TypeScript strict 모드 활성화를 위한 tsconfig.json 설정

새로운 TypeScript 프로젝트에서 strict 모드를 기본으로 설정하여 코드 안정성을 높이고 잠재적 오류를 미리 방지합니다. 프로젝트 초기 설정 시 유용합니다.

#typescript#strict#tsconfig#project#setup
recipe.sh
echo '{ "compilerOptions": { "target": "ES2016", "module": "CommonJS", "jsx": "react", "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true } }' > tsconfig.json
11
스크랩
40
좋아요
0
댓글
TypeScript strict 모드 활성화를 위한 tsconfig.json 설정