TypeScript skipLibCheck가 node_modules libs를 아직 검사하고 있습니다. TypeScript를 React와 함께 사용하고 있습니다.TypeScript는 tsconfig.json에서 "skipLibCheck"가 true로 설정되어 있는데도 node_modules 폴더의 라이브러리를 체크하고 있습니다. 다음은 tsconfig.json입니다(트러블 슈팅을 위해 제외 섹션을 추가했습니다만, 이것도 동작하지 않았습니다). { "compilerOptions": { "target": "es5", "forceConsistentCasingInFileNames": true, "module": "commonjs", "jsx": "react", "declaration": true, "source..