File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7474 },
7575 "devDependencies" : {
7676 "@arethetypeswrong/cli" : " ^0.18.2" ,
77+ "@types/natural-compare" : " ^1.4.3" ,
7778 "@types/node" : " ^20.19.0" ,
7879 "c8" : " ^11.0.0" ,
7980 "dedent" : " ^1.5.3" ,
8687 "mdast-util-from-markdown" : " ^2.0.2" ,
8788 "mocha" : " ^11.3.0" ,
8889 "prettier" : " 3.8.1" ,
89- "typescript" : " ^5.9.3 " ,
90+ "typescript" : " ^6.0.2 " ,
9091 "yorkie" : " ^2.0.0"
9192 },
9293 "engines" : {
Original file line number Diff line number Diff line change @@ -36,10 +36,7 @@ const plugin = {
3636 } ,
3737} ;
3838
39- // eslint-disable-next-line no-lone-blocks -- The block syntax { ... } ensures that TypeScript does not get confused about the type of `plugin`.
40- {
41- plugin . configs . recommended . plugins . json = plugin ;
42- }
39+ Object . assign ( plugin . configs . recommended . plugins , { json : plugin } ) ;
4340
4441export default plugin ;
4542export { JSONSourceCode } ;
Original file line number Diff line number Diff line change 44 "noEmit" : true ,
55 "rootDir" : " ../.." ,
66 "strict" : true ,
7+ "strictNullChecks" : true ,
8+ "useUnknownInCatchVariables" : true ,
79 "exactOptionalPropertyTypes" : true ,
810 "verbatimModuleSyntax" : true ,
911 "erasableSyntaxOnly" : true
Original file line number Diff line number Diff line change 88 "target" : " ESNext" ,
99 "moduleResolution" : " NodeNext" ,
1010 "module" : " NodeNext" ,
11+ "rootDir" : " ./src" ,
12+ "strictNullChecks" : false ,
13+ "useUnknownInCatchVariables" : false ,
1114 "types" : []
1215 }
1316}
You can’t perform that action at this time.
0 commit comments