diff options
author | Laurențiu Nicola <[email protected]> | 2020-07-06 12:29:19 +0100 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2020-07-06 12:29:19 +0100 |
commit | 9209a992c9fa8a9421466f8119aa121fee2223e4 (patch) | |
tree | 6a5bd22c7d25b6d09beb0e8100651d1bbaff6b21 /editors | |
parent | a5ae50400dbab3f176a640570d336dae91d4e16e (diff) |
Disable ES module interop
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/tests/unit/index.ts | 4 | ||||
-rw-r--r-- | editors/code/tsconfig.json | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/editors/code/tests/unit/index.ts b/editors/code/tests/unit/index.ts index 5165720b4..b7d8d2144 100644 --- a/editors/code/tests/unit/index.ts +++ b/editors/code/tests/unit/index.ts | |||
@@ -1,6 +1,6 @@ | |||
1 | import * as path from 'path'; | 1 | import * as path from 'path'; |
2 | import Mocha from 'mocha'; | 2 | import * as Mocha from 'mocha'; |
3 | import glob from 'glob'; | 3 | import * as glob from 'glob'; |
4 | 4 | ||
5 | export function run(): Promise<void> { | 5 | export function run(): Promise<void> { |
6 | // Create the mocha test | 6 | // Create the mocha test |
diff --git a/editors/code/tsconfig.json b/editors/code/tsconfig.json index 32d1a865f..c9f348241 100644 --- a/editors/code/tsconfig.json +++ b/editors/code/tsconfig.json | |||
@@ -6,8 +6,6 @@ | |||
6 | "lib": [ | 6 | "lib": [ |
7 | "es2019" | 7 | "es2019" |
8 | ], | 8 | ], |
9 | "esModuleInterop": true, | ||
10 | "allowSyntheticDefaultImports": true, | ||
11 | "sourceMap": true, | 9 | "sourceMap": true, |
12 | "rootDir": ".", | 10 | "rootDir": ".", |
13 | "strict": true, | 11 | "strict": true, |