Skip to content

Commit

Permalink
[pxt-microbit] Fix deprecation of "out" option in tsconfigs (#5106)
Browse files Browse the repository at this point in the history
* Fix deprecation warning in tsconfigs

* Bump pxt-core 8.6.32, pxt-common-packages 10.4.9
  • Loading branch information
eanders-ms authored May 2, 2023
1 parent e552180 commit 1d96220
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion compiler/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"declaration": true,
"moduleResolution": "node",
"isolatedModules": false,
"out": "../built/compiler.js",
"outFile": "../built/compiler.js",
"rootDir": ".",
"newLine": "LF",
"sourceMap": false,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"typescript": "4.2.3"
},
"dependencies": {
"pxt-common-packages": "10.4.8",
"pxt-core": "8.6.31"
"pxt-common-packages": "10.4.9",
"pxt-core": "8.6.32"
}
}
2 changes: 1 addition & 1 deletion sim/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"noImplicitAny": true,
"noImplicitReturns": true,
"declaration": true,
"out": "../built/sim.js",
"outFile": "../built/sim.js",
"rootDir": ".",
"newLine": "LF",
"moduleResolution": "node",
Expand Down

0 comments on commit 1d96220

Please sign in to comment.