chore: update dev script for parallel TypeScript compilation
f2feb652
1 file(s) · +2 −2
| 32 | 32 | const serverPkgPath = path.join(projectPath, "server", "package.json"); |
|
| 33 | 33 | const serverPkg = await fs.readJson(serverPkgPath); |
|
| 34 | 34 | ||
| 35 | - | // Update the dev script to include TypeScript compilation |
|
| 36 | - | serverPkg.scripts.dev = "bun --watch run src/index.ts && tsc --watch"; |
|
| 35 | + | // Update the dev script to include parallel TypeScript compilation |
|
| 36 | + | serverPkg.scripts.dev = "bun --watch run src/index.ts & tsc --watch"; |
|
| 37 | 37 | ||
| 38 | 38 | await fs.writeJson(serverPkgPath, serverPkg, { spaces: 2 }); |
|
| 39 | 39 |