현재 진행중인 프로젝트 Gavarnie에서는 모노레포 형태로 개발 중이다. 이번에 개발 도중에 다음과 같은 에러를 만났는데,compilerOptions에서 발생하는 'moduleResolution=node10' 옵션은 더 이상 사용되지 않으며 TypeScript 7.0에서 작동하지 않습니다. 이 오류를 무시하려면 compilerOption '"ignoreDeprecations": "6.0"'을(를) 지정합니다.ts그 때 당시 api 모듈의 tsconfig.json은 아래와 같았다.{ "extends": "../../tsconfig.base.json", "compilerOptions": { "rootDir": "./src", "outDir": "./dist" }, "include": ["src/..