We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d92c3d commit ba4d5e4Copy full SHA for ba4d5e4
apps/internal-portal/backend/package.json
@@ -11,7 +11,7 @@
11
},
12
"main": "./src/index.ts",
13
"scripts": {
14
- "build": "tsc",
+ "build": "tsc -p tsconfig.build.json",
15
"dev": "nodemon -e ts,js --exec npm run start",
16
"dev:init": "npm run prepare:dotenv",
17
"lint": "eslint src/",
@@ -67,4 +67,4 @@
67
"typescript": "^5.6.2",
68
"typescript-eslint": "8.38.0"
69
}
70
-}
+}
apps/internal-portal/backend/tsconfig.build.json
@@ -1,12 +1,14 @@
1
{
2
"extends": "./tsconfig.json",
3
"compilerOptions": {
4
+ "noEmit": false,
5
"composite": true,
- "rootDir": ".",
6
+ "rootDir": "./src",
7
"outDir": "./build",
8
"baseUrl": ".",
9
"paths": {
10
"@/*": ["./src/*"]
- }
+ },
+ "include": ["./src"]
0 commit comments