Skip to content

Commit

Permalink
TypeScript v5 introduce moduleResolution: bundler
Browse files Browse the repository at this point in the history
  • Loading branch information
cometkim committed Mar 17, 2023
1 parent 69e7ab2 commit 9b0501b
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .yarn/sdks/typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript",
"version": "4.8.3-sdk",
"version": "5.0.2-sdk",
"main": "./lib/typescript.js",
"type": "commonjs"
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"./platform": "./sources/platform/node.ts"
},
"resolutions": {
"typescript": "4.8.3"
"typescript": "5.0.2"
},
"dependencies": {
"typanion": "^3.8.0"
Expand Down Expand Up @@ -63,7 +63,7 @@
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslib": "^2.0.0",
"typescript": "^4.9.5"
"typescript": "^5.0.2"
},
"scripts": {
"prepack": "rm -rf lib && rollup -c",
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"DOM",
"ES2018"
],
"module": "commonjs",
"moduleResolution": "nodenext",
"module": "esnext",
"moduleResolution": "bundler",
"noEmit": true,
"skipLibCheck": true,
"strict": true,
Expand Down
18 changes: 9 additions & 9 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1235,7 +1235,7 @@ __metadata:
ts-node: ^10.9.1
tslib: ^2.0.0
typanion: ^3.8.0
typescript: ^4.9.5
typescript: ^5.0.2
peerDependencies:
typanion: "*"
languageName: unknown
Expand Down Expand Up @@ -4360,23 +4360,23 @@ __metadata:
languageName: node
linkType: hard

"typescript@npm:4.8.3":
version: 4.8.3
resolution: "typescript@npm:4.8.3"
"typescript@npm:5.0.2":
version: 5.0.2
resolution: "typescript@npm:5.0.2"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 8286a5edcaf3d68e65c451aa1e7150ad1cf53ee0813c07ec35b7abdfdb10f355ecaa13c6a226a694ae7a67785fd7eeebf89f845da0b4f7e4a35561ddc459aba0
checksum: bef1dcd166acfc6934b2ec4d72f93edb8961a5fab36b8dd2aaf6f4f4cd5c0210f2e0850aef4724f3b4913d5aef203a94a28ded731b370880c8bcff7e4ff91fc1
languageName: node
linkType: hard

"typescript@patch:typescript@npm%3A4.8.3#~builtin<compat/typescript>":
version: 4.8.3
resolution: "typescript@patch:typescript@npm%3A4.8.3#~builtin<compat/typescript>::version=4.8.3&hash=aae4e6"
"typescript@patch:typescript@npm%3A5.0.2#~builtin<compat/typescript>":
version: 5.0.2
resolution: "typescript@patch:typescript@npm%3A5.0.2#~builtin<compat/typescript>::version=5.0.2&hash=d73830"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 2222d2382fb3146089b1d27ce2b55e9d1f99cc64118f1aba75809b693b856c5d3c324f052f60c75b577947fc538bc1c27bad0eb76cbdba9a63a253489504ba7e
checksum: bdbf3d0aac0d6cf010fbe0536753dc19f278eb4aba88140dcd25487dfe1c56ca8b33abc0dcd42078790a939b08ebc4046f3e9bb961d77d3d2c3cfa9829da4d53
languageName: node
linkType: hard

Expand Down

0 comments on commit 9b0501b

Please sign in to comment.