Remove tsx dependency and rely on Node.js 22.18.0 native TypeScript runner

This commit is contained in:
Hugo Alliaume
2026-02-27 20:17:39 +01:00
parent 4e84564e21
commit 4cd73c612d

View File

@@ -19,8 +19,8 @@
"main": "dist/abstract_map_controller.js",
"types": "dist/abstract_map_controller.d.ts",
"scripts": {
"build": "tsx ../../../bin/build_package.ts .",
"watch": "tsx ../../../bin/build_package.ts . --watch",
"build": "node ../../../bin/build_package.ts .",
"watch": "node ../../../bin/build_package.ts . --watch",
"test": "pnpm run test:unit",
"test:unit": "../../../bin/unit_test_package.sh ."
},
@@ -40,7 +40,6 @@
"@testing-library/user-event": "^14.6.1",
"jsdom": "^26.1.0",
"tslib": "^2.8.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}