Skip to content

Commit

Permalink
Update other deps with ts target bump
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalLytek committed Oct 18, 2023
1 parent ed5dca7 commit 0070c6b
Show file tree
Hide file tree
Showing 54 changed files with 9,615 additions and 5,561 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2019-2020 Michał Lytek
Copyright (c) 2019-2023 Michał Lytek

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
6 changes: 3 additions & 3 deletions docs/basics/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_position: 1
---

:::info
Be aware that due to usage of some ES2019 and newer Node.js features, you also have to use **Node.js v12.4.0 or newer**.
Be aware that due to usage of some ES2022 and newer Node.js features, you also have to use **Node.js v16.13.0 or newer**.
:::

### TypeGraphQL
Expand Down Expand Up @@ -66,9 +66,9 @@ As prisma emits multiple files, make sure you have your tsconfig set properly to
```json {4}
{
"compilerOptions": {
"target": "es2018",
"target": "es2022",
"module": "commonjs",
"lib": ["es2018", "esnext.asynciterable"],
"lib": ["es2022"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true
}
Expand Down
4 changes: 2 additions & 2 deletions examples/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"compilerOptions": {
"target": "ES2018",
"target": "es2022",
"module": "commonjs",
"lib": ["es2018"],
"lib": ["es2022"],
"strict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
Expand Down
Loading

0 comments on commit 0070c6b

Please sign in to comment.