Make the extension debugging work

This commit is contained in:
Akshita 2019-03-18 15:43:33 -07:00
Родитель 6082b0852f
Коммит f29b9b18cd
3 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -2,8 +2,8 @@
* Copyright (C) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------*/
import shelljs = require("async-shelljs");
import path = require('path');
import * as shelljs from "async-shelljs";
import * as path from "path";
const fs = require('async-file');
declare var __coverage__: any;

Просмотреть файл

@ -6,7 +6,7 @@
"lib": [
"es6"
],
"inlineSourceMap": true,
"sourceMap": true,
"moduleResolution": "node",
"alwaysStrict": true,
"noImplicitAny": true,

Просмотреть файл

@ -31,6 +31,11 @@ const config = {
exclude: /node_modules/,
use: [{
loader: 'ts-loader',
options: {
compilerOptions: {
"module": "es6" // override `tsconfig.json` so that TypeScript emits native JavaScript modules.
}
}
}]
}]
},