Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "chore: replace ts-node with tsx and native strip-types"
This reverts commit e53877d.
  • Loading branch information
Rik Smale committed Apr 14, 2026
commit 409a0acaf361de9c9d8662af140542fad633c41a
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"stop-oracle": "bash dev/oracle/oldest/stop.sh; bash dev/oracle/latest/stop.sh",
"stop-all": "concurrently \"npm:stop-*(!all)\"",
"----------------------------------------- SSCCEs ------------------------------------------": "",
"sscce": "tsx sscce.ts",
"sscce": "ts-node sscce.ts",
"sscce-mariadb": "cross-env DIALECT=mariadb yarn sscce",
"sscce-mysql": "cross-env DIALECT=mysql yarn sscce",
"sscce-postgres": "cross-env DIALECT=postgres yarn sscce",
Expand Down Expand Up @@ -100,7 +100,7 @@
"prettier": "3.5.3",
"prettier-plugin-organize-imports": "4.3.0",
"source-map-support": "0.5.21",
"tsx": "4.21.0",
"ts-node": "10.9.2",
"typedoc": "0.28.19",
"typedoc-plugin-mdn-links": "5.1.1",
"typedoc-plugin-missing-exports": "4.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/bin/dev.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env -S node --experimental-strip-types --no-warnings=ExperimentalWarning
#!/usr/bin/env -S node --loader ts-node/esm --no-warnings=ExperimentalWarning

import { execute } from '@oclif/core';

Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
"_test-unit": "yarn mocha \"test/unit/**/*.test.[tj]s\"",
"test-integration": "yarn mocha \"test/integration/**/*.test.[tj]s\"",
"test-smoke": "yarn mocha \"test/smoke/**/*.test.[tj]s\" --timeout 600000",
"teaser": "node --experimental-strip-types test/teaser.ts",
"teaser": "ts-node test/teaser.ts",
"test": "yarn build && yarn test-typings && yarn teaser && yarn _test-unit && yarn test-integration",
"----------------------------------------- coverage ------------------------------------------------": "",
"cover": "rimraf coverage && yarn teaser && yarn cover-integration && yarn cover-unit && yarn merge-coverage",
Expand Down
3 changes: 3 additions & 0 deletions tsconfig-preset.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,8 @@
"checkJs": false,
"stripInternal": true,
"exactOptionalPropertyTypes": true
},
"ts-node": {
"transpileOnly": true
}
}
Loading
Loading