Skip to content

Commit

Permalink
Added esModuleInterop in tsconfig.json.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ayfri committed Dec 10, 2020
1 parent 76fc8f4 commit 15549b9
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"declaration": true,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": [
"ES2020"
],
"module": "commonjs",
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"moduleResolution": "node",
"outDir": "dist",
"rootDir": "src",
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
"strict": true,
"target": "ES2020"
}
}

0 comments on commit 15549b9

Please sign in to comment.