Skip to content

Commit ba4d5e4

Browse files
committed
Fixes @onecore/internal-portal-backend build config
1 parent 1d92c3d commit ba4d5e4

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

apps/internal-portal/backend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"main": "./src/index.ts",
1313
"scripts": {
14-
"build": "tsc",
14+
"build": "tsc -p tsconfig.build.json",
1515
"dev": "nodemon -e ts,js --exec npm run start",
1616
"dev:init": "npm run prepare:dotenv",
1717
"lint": "eslint src/",
@@ -67,4 +67,4 @@
6767
"typescript": "^5.6.2",
6868
"typescript-eslint": "8.38.0"
6969
}
70-
}
70+
}
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
4+
"noEmit": false,
45
"composite": true,
5-
"rootDir": ".",
6+
"rootDir": "./src",
67
"outDir": "./build",
78
"baseUrl": ".",
89
"paths": {
910
"@/*": ["./src/*"]
1011
}
11-
}
12+
},
13+
"include": ["./src"]
1214
}

0 commit comments

Comments
 (0)