Skip to content

Commit

Permalink
Revert "Remove esModuleInterop option from tsconfig.json"
Browse files Browse the repository at this point in the history
This reverts commit e738254.

The current ESLint setup conflicts with itself when using
`import stripAnsi = require('strip-ansi')`, which is what should actually be
used.
  • Loading branch information
remcohaszing committed Nov 10, 2020
1 parent e738254 commit 97a41a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"module": "commonjs",
"allowJs": true,
"strict": true,
"noEmit": true
"noEmit": true,
"esModuleInterop": true
}
}

0 comments on commit 97a41a8

Please sign in to comment.