Skip to content

Commit

Permalink
Fix error ERR_REQUIRE_ESM
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoli committed Feb 1, 2024
1 parent 09a2dd3 commit dee7d68
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es2019"
],
"target": "es2020",
"lib": ["es2020"],
"moduleResolution": "node",
"sourceMap": true,
"strict": true,
"outDir": "out",
"rootDir": "src",
"strict": true,
"typeRoots": [
"typings"
],
Expand All @@ -19,4 +18,4 @@
"include": [
"src/**/*.ts",
],
}
}

0 comments on commit dee7d68

Please sign in to comment.