์๋ฌ : Cannot find module '~.json'
๋ถ๋ช ํ ํ์ผ ๋ฐ์ ์ ๋ฃ์ด์คฌ๋๋ฐ ๊ณ์ ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ค!
์ด์ : ํ์ ์คํฌ๋ฆฝํธ๊ฐ JSON ํ์ผ์ ๊ธฐ๋ณธ์ ์ผ๋ก ์ ๊ณตํ์ง ์๋๋ค!
ํด๊ฒฐ๋ฐฉ๋ฒ: tsconfig.jsonํ์ผ์์ ํด๋น ์ฝ๋๋ฅผ ์ถ๊ฐํด์ค๋ค~
{
"compilerOptions": {
// ...
"resolveJsonModule": true,
// ...
}
}
์ด ์ฝ๋๋ฅผ ์ถ๊ฐํด์ค์ผ๋ก์จ,
1. json"ํ์ผ์ importํ ์ ์๋ค
2. imported๋ JSON ํ์ผ์ ์ ์ JSON ํํ๋ก ๋ง๋ฌ
yarn run build ํด์ tsํ์ผ์ jsํ์ผ๋ก ๋ง๋ค์ด์ค๋ ๋ ์ค๋ฅ๊ฐ ๋ฌ๋ค!
node:internal/modules/cjs/loader:959
throw err;
^
Error: Cannot find module '../data/video.json'
๋ค๋ค ํด๊ฒฐ์ด ์๋๋ฉด ์ญ์ ํ๋ผ ํด์ ์ญ์ ๋ฅผ ํด์ฃผ์๋ค!
# ๐๏ธ delete node_modules and package-lock.json
rm -rf node_modules
rm -f package-lock.json
# ๐๏ธ clean npm cache
npm cache clean --force
npm install
์ถ์ฒ
https://www.designcise.com/web/tutorial/how-to-fix-cannot-find-module-file-json-typescript-error
'Server๐งค > Node.JS' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[Node.js] CI/CD ๊ตฌ์ถํ๊ธฐ - Github Actions, AWS Codedeploy (Prisma, yarn run build keeps running) (0) | 2023.01.09 |
---|---|
[Node.js] ์ด๋ฒคํธ๊ธฐ๋ฐ (1) | 2022.10.03 |
ํธ์ด์คํ ์ด๋? / var๋ฅผ ์ง์ํ๊ณ const, let ์ฌ์ฉํ๋ผ๋ ์ด์ (0) | 2022.10.03 |
[Node.js] NPM ๋ผ์ด๋ธ๋ฌ๋ฆฌ (0) | 2022.06.21 |
[Node.js] NPM ๋ชจ๋ (0) | 2022.06.12 |