Skip to content

Commit 5da610b

Browse files
committed
chore: tsconfig updated settings
1 parent 52f9551 commit 5da610b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/project-structure/tsconfig-json.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ For more information see the official [TypeScript documentation](https://www.typ
1212
```json
1313
{
1414
"compilerOptions": {
15-
"module": "esnext",
16-
"target": "es2017",
15+
"module": "ESNext",
16+
"target": "ES2022",
1717
"moduleResolution": "node",
1818
"experimentalDecorators": true,
1919
"emitDecoratorMetadata": true,
2020
"noEmitHelpers": true,
2121
"noEmitOnError": true,
2222
"skipLibCheck": true,
23-
"lib": ["es2017", "dom"],
23+
"lib": ["ESNext", "dom"],
2424
"baseUrl": ".",
2525
"paths": {
2626
"~/*": ["src/*"],

0 commit comments

Comments
 (0)