Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- c# datagridview 데이터 넣기
- pm2 상태 확인
- mySQL_Replication
- 공인IP
- invalid data
- datagridview 직접입력
- mosquitto
- AntDesign
- DataGridView 직접 입력
- allow_anonymouse
- mosquitto.conf
- listener 1883
- pm2 설치
- setInterval 정지
- 맥 어드레스
- 데이터테이블 데이터 넣기
- map이 undefined가 뜰 때
- 1883
- DatePicker
- setInterval clear
- setInterval 중지
- pm2 시작
- pm2 확인
- 서버동기화
- Replication
- setInterval 외부 정지
- pm2
- timepicker
- html #select #option #multiple
- transfer
Archives
- Today
- Total
개발 노트
next.js build error (winston module) 본문
현재 root경로에서 logger.js 내부에서 winston모듈 사용중
tsconfing.json내부에서 에러로 표시되길래 확인
tsconfig파일 수정
{
"compilerOptions": {
"types": ["kakao.maps.d.ts"],
"lib": ["WebWorker", "dom", "dom.iterable", "esnext", ],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": false,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"target": "es2017",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "public/mqttWorker.js"],
// "exclude": ["node_modules"]
"exclude": ["node_modules", "logger.js"]
}
exclude에 logger.js추가 및 .next폴더 전체삭제 후 build하기
정상동작★
'JavaScript' 카테고리의 다른 글
이미지 파일 DB저장 및 url호출 (0) | 2024.12.30 |
---|---|
JS readFile 예외 처리 (0) | 2023.11.10 |
JS forEach 와 async (0) | 2023.11.10 |
JS Set사용법 (0) | 2023.11.10 |
JS Map 사용법 (0) | 2023.11.09 |