We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e59b384 commit 6fb3c95Copy full SHA for 6fb3c95
test/index.ts
@@ -1,6 +1,6 @@
1
-import * as path from 'path';
2
-import * as Mocha from 'mocha';
3
-import * as glob from 'glob';
+import path from 'path';
+import Mocha from 'mocha';
+import glob from 'glob';
4
5
export function run(): Promise<void> {
6
// Create the mocha test
tsconfig.test.json
@@ -6,7 +6,9 @@
"lib": ["ES2020"],
7
"sourceMap": true,
8
"rootDir": ".",
9
- "resolveJsonModule": true
+ "resolveJsonModule": true,
10
+ "esModuleInterop": true,
11
+ "removeComments": true
12
},
13
"include": ["test/**/*.ts", "syntaxes/*.json"],
14
"exclude": ["node_modules", ".vscode-test"]
0 commit comments