Skip to content

Commit

Permalink
chore: 백엔드 ESM 으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
hoeeeeeh committed Nov 13, 2024
1 parent 71d80ef commit 820c02e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions backend/rtmpServer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
},
"scripts": {
"start": "tsx src/index.ts",
"prod": "node .dist/index.js",
"build": "tsc -b",
"lint": "eslint ."
},
Expand Down
6 changes: 3 additions & 3 deletions backend/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "es2016",

"module": "CommonJS",
"target": "ESNext",
"moduleResolution": "node",
"module": "ESNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */,

Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
"msw:init": "msw init public/"
},
"dependencies": {
"@vitejs/plugin-react": "^4.3.3",
"eslint-plugin-react": "^7.37.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.27.0",
"styled-components": "^6.1.13",
"@vitejs/plugin-react": "^4.3.3",
"vite": "^5.4.10",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.0"
Expand Down

0 comments on commit 820c02e

Please sign in to comment.