Skip to content

Commit

Permalink
build(tsconfig): update target
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Oct 15, 2023
1 parent 2301237 commit 3fe392c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"compilerOptions": {
"target": "es2020",
"declaration": true,
"target": "es2015",
"moduleResolution": "node",
"outDir": "lib",
"rootDir": ".",
"baseUrl": ".",
"strict": true,
"sourceMap": true,
"declaration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"moduleResolution": "node",
"resolveJsonModule": true
},
"include": ["src", "test"]
Expand Down

0 comments on commit 3fe392c

Please sign in to comment.