Disable ES module interop

This commit is contained in:
Laurențiu Nicola 2020-07-06 14:29:19 +03:00
parent a5ae50400d
commit 9209a992c9
2 changed files with 2 additions and 4 deletions

View file

@ -1,6 +1,6 @@
import * as path from 'path'; import * as path from 'path';
import Mocha from 'mocha'; import * as Mocha from 'mocha';
import glob from 'glob'; import * as glob from 'glob';
export function run(): Promise<void> { export function run(): Promise<void> {
// Create the mocha test // Create the mocha test

View file

@ -6,8 +6,6 @@
"lib": [ "lib": [
"es2019" "es2019"
], ],
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true, "sourceMap": true,
"rootDir": ".", "rootDir": ".",
"strict": true, "strict": true,