Skip to content

Commit

Permalink
Fix prod build entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Veikkosuhonen committed Jan 18, 2024
1 parent a695f13 commit 1b94cd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"start": "docker-compose up",
"start:dev": "NODE_ENV=development nodemon --exec node --loader ts-node/esm src/index.js",
"start:prod": "node build/src/index.js",
"start:prod": "node build/index.js",
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage"
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
"moduleResolution": "node16"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "build", "tests", "scripts"]
"exclude": ["node_modules", "build", "tests", "scripts", "prettier.config.js"]
}

0 comments on commit 1b94cd0

Please sign in to comment.