Skip to content

Commit

Permalink
Fix dynamic imports for ES Modules
Browse files Browse the repository at this point in the history
  • Loading branch information
levibuzolic committed Apr 6, 2023
1 parent 579a780 commit 2822b6c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"moduleResolution": "node16",
"declaration": true,
"noImplicitAny": false,
"noImplicitThis": true,
Expand All @@ -12,8 +12,6 @@
"forceConsistentCasingInFileNames": true,
"target": "es5",
"lib": ["es2017"],
"typeRoots": [
"node_modules/@types"
]
"typeRoots": ["node_modules/@types"]
}
}

0 comments on commit 2822b6c

Please sign in to comment.