화면에 렌더링은 되는데 코드에서 빨간줄이 떠요
tsconfig.app.json 부분에 추가로 작성해주니깐 에러가 해결되었습니다! 혹시 tsconfig.json에서 작성할때는 안됐던 이유를 여쭤봐도 괜찮을까요!{ "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "ES2020", "useDefineForClassFields": true, "lib": ["ES2020", "DOM", "DOM.Iterable"], "module": "ESNext", "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "isolatedModules": true, "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", /* Linting */ "strict": true, "noUnusedLocals": true, "noUnusedParameters": true, "noFallthroughCasesInSwitch": true, "noUncheckedSideEffectImports": true, "baseUrl": ".", "paths": { "@components/*": ["src/components/*"], "@src/*": ["src/*"] } }, "include": ["src"] }