[TS] tsconfig.json + tsconfig.path.json 파일 합치기
기존은 tsconfig.json 파일과 tsconfig.path.json 파일이 구분되어 있었다. 변경전 tsconfig.json { "extends": "./tsconfig.path.json", "compilerOptions": { "target": "ESNext", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "strict": true, "forceConsistentCasingInFileNames": true, "noFallthroughCasesInSwitch": true, "module":..