File tree 4 files changed +25
-1
lines changed
4 files changed +25
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ' @1stg/app-config ' : minor
3
+ ' @1stg/common-config ' : minor
4
+ ' @1stg/lib-config ' : minor
5
+ ' @1stg/tsconfig ' : minor
6
+ ---
7
+
8
+ feat(tsconfig): add node16 and nodenext configs
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " http://json.schemastore.org/tsconfig" ,
3
+ "extends" : " ./lib.json" ,
4
+ "compilerOptions" : {
5
+ "moduleResolution" : " Node16" ,
6
+ "target" : " ES2021"
7
+ }
8
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "$schema" : " http://json.schemastore.org/tsconfig" ,
3
+ "extends" : " ./lib.json" ,
4
+ "compilerOptions" : {
5
+ "moduleResolution" : " NodeNext" ,
6
+ "target" : " ESNext"
7
+ }
8
+ }
Original file line number Diff line number Diff line change 8
8
"jsx" : " preserve" ,
9
9
"lib" : [" ESNext" ],
10
10
"module" : " ESNext" ,
11
- "moduleResolution" : " node " ,
11
+ "moduleResolution" : " Node " ,
12
12
"noImplicitOverride" : true ,
13
13
"noUnusedLocals" : true ,
14
14
"noUnusedParameters" : true ,
You can’t perform that action at this time.
0 commit comments