Skip to content

Commit

Permalink
ES2022
Browse files Browse the repository at this point in the history
  • Loading branch information
arogozine committed Aug 14, 2022
1 parent c8d9efe commit c9685fa
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# LINQ To TypeScript
- **Implementation of [LINQ](https://en.wikipedia.org/wiki/Language_Integrated_Query) for TypeScript**
- **Targets TypeScript 4.5.X and ES 2019**
- **Targets TypeScript 4.7.X and ES 2022**
```TypeScript
await from([bing, google, quackQuackGo])
.asParallel()
Expand All @@ -25,9 +25,9 @@ npm i linq-to-typescript
### tsconfig.json
```JSON
"compilerOptions": {
"target": "es2019",
"target": "es2022",
"lib": [
"es2019"
"es2022"
]
}
```
Expand Down
4 changes: 2 additions & 2 deletions examples/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compileOnSave": true,
"compilerOptions": {
"moduleResolution": "node",
"target": "es2019",
"target": "es2022",
"module": "ESNext",
"esModuleInterop": true,
"removeComments": true,
Expand All @@ -16,7 +16,7 @@
"declaration": false,
"lib": [
"dom",
"es2019",
"es2022",
],
"importHelpers": false,
}
Expand Down
4 changes: 2 additions & 2 deletions tests/moduletest/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"compileOnSave": true,
"compilerOptions": {
"moduleResolution": "node",
"target": "ES2019",
"target": "ES2022",
"module": "ES2020",
"esModuleInterop": true,
"removeComments": true,
Expand All @@ -15,7 +15,7 @@
"sourceMap": false,
"declaration": false,
"lib": [
"ES2019"
"ES2022"
]
}
}
2 changes: 1 addition & 1 deletion tests/reacttest/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "es2019",
"target": "es2022",
"lib": [
"dom",
"dom.iterable",
Expand Down
4 changes: 2 additions & 2 deletions tests/unittests/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"allowJs": true,
"moduleResolution": "node",
"target": "es2019",
"target": "es2022",
"module": "esnext",
"esModuleInterop": true,
"removeComments": true,
Expand All @@ -17,7 +17,7 @@
"sourceMap": true,
"declaration": true,
"lib": [
"es2019"
"es2022"
]
}
}

0 comments on commit c9685fa

Please sign in to comment.