-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
upgrade to [email protected] #3953
Conversation
Bumps node from 16.17.0-alpine to 20.2.0-alpine. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.18.19 to 20.2.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Codecov ReportPatch and project coverage have no change.
Additional details and impacted files@@ Coverage Diff @@
## master #3953 +/- ##
=======================================
Coverage 86.34% 86.34%
=======================================
Files 66 66
Lines 4709 4709
Branches 563 563
=======================================
Hits 4066 4066
Misses 637 637
Partials 6 6
☔ View full report in Codecov by Sentry. |
verbatimModuleSyntaxを対応させるためにtsのバージョンを4->5にあげたらtype-checkが大量にwarn吐いたので一旦verbatimModuleSyntaxの設定は消しました |
@@ -0,0 +1 @@ | |||
engine-strict=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
package.jsonのenginesに書いたバージョンを厳守するやつです
https://docs.npmjs.com/cli/v8/using-npm/config#engine-strict
This reverts commit d2963d5.
"importsNotUsedAsValues": "error", | ||
// TODO: TypeScriptをv5にしたら使う | ||
// "verbatimModuleSyntax": true, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
別PRでtypescript5.0にあげるつもりです
https://www.typescriptlang.org/tsconfig#importsNotUsedAsValues
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
よさそうです!
verbatimModuleSyntax
, deprecateimportsNotUsedAsValues
andpreserveValueImports
microsoft/TypeScript#52203