- Changed build script in packages/logic/package.json to use tsdown instead of tsc. - Updated dev script in packages/logic/package.json to use tsdown with watch mode. - Added tsdown as a devDependency in packages/logic/package.json. - Updated pnpm-lock.yaml to include tsdown and its dependencies across various apps. - Created a new tsdown.config.ts file to define build configuration for the workspace.
16 lines
475 B
JSON
16 lines
475 B
JSON
{
|
|
"name": "@sammo-ts/game-api",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-api",
|
|
"dev": "tsdown -c ../../tsdown.config.ts -F @sammo-ts/game-api --watch",
|
|
"lint": "node -e \"console.log('lint not configured')\"",
|
|
"test": "node -e \"console.log('test not configured')\""
|
|
},
|
|
"devDependencies": {
|
|
"tsdown": "^0.18.3"
|
|
}
|
|
}
|