-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: only fallback to ts-node when it's available (#141)
close #128
- Loading branch information
Showing
12 changed files
with
5,496 additions
and
5,385 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"synckit": patch | ||
--- | ||
|
||
fix: only fallback to ts-node when it's available |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"node": "16", | ||
"node": "18", | ||
"sandboxes": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"author": "JounQin (https://www.1stG.me) <[email protected]>", | ||
"funding": "https://opencollective.com/unts", | ||
"license": "MIT", | ||
"packageManager": "[email protected].19", | ||
"packageManager": "[email protected].21", | ||
"engines": { | ||
"node": "^14.18.0 || >=16.0.0" | ||
}, | ||
|
@@ -52,34 +52,34 @@ | |
"typecov": "type-coverage" | ||
}, | ||
"dependencies": { | ||
"@pkgr/utils": "^2.3.1", | ||
"tslib": "^2.5.0" | ||
"@pkgr/utils": "^2.4.2", | ||
"tslib": "^2.6.2" | ||
}, | ||
"devDependencies": { | ||
"@1stg/lib-config": "^10.2.1", | ||
"@changesets/changelog-github": "^0.4.6", | ||
"@changesets/cli": "^2.26.0", | ||
"@swc-node/register": "^1.5.5", | ||
"@types/jest": "^28.1.8", | ||
"@types/node": "^18.7.13", | ||
"@1stg/lib-config": "^12.0.0", | ||
"@changesets/changelog-github": "^0.5.0", | ||
"@changesets/cli": "^2.27.1", | ||
"@swc-node/register": "^1.6.8", | ||
"@types/jest": "^29.5.10", | ||
"@types/node": "^20.10.1", | ||
"clean-pkg-json": "^1.2.0", | ||
"deasync": "^0.1.28", | ||
"esbuild-register": "^3.3.3", | ||
"esbuild-runner": "^2.2.1", | ||
"execa": "^6.1.0", | ||
"jest": "^29.0.1", | ||
"patch-package": "^6.4.7", | ||
"deasync": "^0.1.29", | ||
"esbuild-register": "^3.5.0", | ||
"esbuild-runner": "^2.2.2", | ||
"execa": "^8.0.1", | ||
"jest": "^29.7.0", | ||
"patch-package": "^8.0.0", | ||
"sync-threads": "^1.0.1", | ||
"ts-expect": "^1.3.0", | ||
"ts-jest": "^28.0.8", | ||
"ts-jest": "^29.1.1", | ||
"ts-node": "^10.9.1", | ||
"tsx": "^3.12.2", | ||
"type-coverage": "^2.22.0", | ||
"typescript": "^4.9.4", | ||
"yarn-deduplicate": "^6.0.0" | ||
"tsx": "^4.6.1", | ||
"type-coverage": "^2.27.0", | ||
"typescript": "^5.3.2", | ||
"yarn-deduplicate": "^6.0.2" | ||
}, | ||
"resolutions": { | ||
"prettier": "^2.7.1", | ||
"prettier": "^2.8.8", | ||
"synckit": "link:." | ||
}, | ||
"commitlint": { | ||
|
@@ -96,13 +96,16 @@ | |
"^(\\.{1,2}/.*)\\.js$": "$1", | ||
"^synckit$": "<rootDir>/src" | ||
}, | ||
"globals": { | ||
"ts-jest": { | ||
"useESM": true, | ||
"tsconfig": { | ||
"importHelpers": false | ||
"transform": { | ||
"^.+\\.tsx?$": [ | ||
"ts-jest", | ||
{ | ||
"useESM": true, | ||
"tsconfig": { | ||
"importHelpers": false | ||
} | ||
} | ||
} | ||
] | ||
} | ||
}, | ||
"prettier": "@1stg/prettier-config", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.