Skip to content

Commit 8965992

Browse files
committed
fix
1 parent 015c61d commit 8965992

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"dev": "tsx watch src/index.ts",
99
"build": "rm -rf dist && tsc -p tsconfig.json",
10-
"start": "node dist/index.js",
10+
"start": "node ../../dist/apps/auth/src/index.js",
1111
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
1212
"typecheck": "tsc --noEmit"
1313
},

apps/auth/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"outDir": "./dist",
4+
"outDir": "../../dist/apps/auth",
55
"module": "commonjs",
66
"esModuleInterop": true,
77
"forceConsistentCasingInFileNames": true,

apps/backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"dev": "tsx watch src/index.ts",
99
"build": "rm -rf dist && tsc -p tsconfig.json",
10-
"start": "node dist/index.js",
10+
"start": "node ../../dist/apps/backend/src/index.js",
1111
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
1212
"typecheck": "tsc --noEmit"
1313
},

apps/backend/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../../tsconfig.base.json",
33
"compilerOptions": {
4-
"outDir": "./dist",
4+
"outDir": "../../dist/apps/backend",
55
"module": "commonjs",
66
"esModuleInterop": true,
77
"forceConsistentCasingInFileNames": true,

0 commit comments

Comments
 (0)