임시 FE 가 정식 관리자 콘솔이 되어 이름을 용도에 맞게 변경. 루트 병렬 유지(lps/ 는 파이썬 백엔드 루트라 중첩 시 비대칭 + Docker 빌드 컨텍스트 오염). package.json name 동기화. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
19 lines
430 B
JSON
19 lines
430 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"skipLibCheck": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"types": ["vite/client"]
|
|
},
|
|
"include": ["src"]
|
|
}
|