Files
core2026/package.json
T
Hide_D e99c7b2c83 feat: update build and dev scripts to use tsdown; add tsdown config file
- 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.
2025-12-28 13:16:07 +00:00

19 lines
451 B
JSON

{
"name": "sammo-ts",
"private": true,
"type": "module",
"version": "0.0.0",
"scripts": {
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"build:server": "pnpm --filter ./tools/build-scripts build:server --"
},
"devDependencies": {
"@types/node": "^20.14.9",
"tsdown": "^0.18.3",
"typescript": "^5.5.4"
}
}