Skip to content

Commit

Permalink
Use typescript@5.4 without "use strict;" directives, instead of lates…
Browse files Browse the repository at this point in the history
…t typescript@5.5

The "use strict;" appears to cause some issues with LocalDoc in certain cases. Pinning to TS 5.4 now to get things fixed, will investigate an isolated repro and long-term fix later.
  • Loading branch information
ericyhwang committed Jul 22, 2024
1 parent c2baad3 commit f1ea581
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"typedoc": "^0.26.5",
"typedoc-plugin-mdn-links": "^3.1.28",
"typedoc-plugin-missing-exports": "^3.0.0",
"typescript": "~5.5"
"typescript": "~5.4.5"
},
"bugs": {
"url": "https://github.com/derbyjs/racer/issues"
Expand Down
2 changes: 2 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"compilerOptions": {
"allowJs": true,
"ignoreDeprecations": "5.0",
"lib":[],
"module": "CommonJS",
"noImplicitUseStrict": true,
"outDir": "lib",
"target": "ES5",
"sourceMap": false,
Expand Down

0 comments on commit f1ea581

Please sign in to comment.