File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# LINQ To TypeScript
22- ** Implementation of [ LINQ] ( https://en.wikipedia.org/wiki/Language_Integrated_Query ) for TypeScript**
3- - ** Targets TypeScript 4.5 .X and ES 2019 **
3+ - ** Targets TypeScript 4.7 .X and ES 2022 **
44``` TypeScript
55await from ([bing , google , quackQuackGo ])
66 .asParallel ()
@@ -25,9 +25,9 @@ npm i linq-to-typescript
2525### tsconfig.json
2626``` JSON
2727"compilerOptions" : {
28- "target" : " es2019 " ,
28+ "target" : " es2022 " ,
2929 "lib" : [
30- " es2019 "
30+ " es2022 "
3131 ]
3232}
3333```
Original file line number Diff line number Diff line change 22 "compileOnSave" : true ,
33 "compilerOptions" : {
44 "moduleResolution" : " node" ,
5- "target" : " es2019 " ,
5+ "target" : " es2022 " ,
66 "module" : " ESNext" ,
77 "esModuleInterop" : true ,
88 "removeComments" : true ,
1616 "declaration" : false ,
1717 "lib" : [
1818 " dom" ,
19- " es2019 " ,
19+ " es2022 " ,
2020 ],
2121 "importHelpers" : false ,
2222 }
Original file line number Diff line number Diff line change 22 "compileOnSave" : true ,
33 "compilerOptions" : {
44 "moduleResolution" : " node" ,
5- "target" : " ES2019 " ,
5+ "target" : " ES2022 " ,
66 "module" : " ES2020" ,
77 "esModuleInterop" : true ,
88 "removeComments" : true ,
1515 "sourceMap" : false ,
1616 "declaration" : false ,
1717 "lib" : [
18- " ES2019 "
18+ " ES2022 "
1919 ]
2020 }
2121}
Original file line number Diff line number Diff line change 11{
22 "compilerOptions" : {
3- "target" : " es2019 " ,
3+ "target" : " es2022 " ,
44 "lib" : [
55 " dom" ,
66 " dom.iterable" ,
Original file line number Diff line number Diff line change 33 "compilerOptions" : {
44 "allowJs" : true ,
55 "moduleResolution" : " node" ,
6- "target" : " es2019 " ,
6+ "target" : " es2022 " ,
77 "module" : " esnext" ,
88 "esModuleInterop" : true ,
99 "removeComments" : true ,
1717 "sourceMap" : true ,
1818 "declaration" : true ,
1919 "lib" : [
20- " es2019 "
20+ " es2022 "
2121 ]
2222 }
2323}
You can’t perform that action at this time.
0 commit comments