Make the extension debugging work
This commit is contained in:
Родитель
6082b0852f
Коммит
f29b9b18cd
|
@ -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.
|
||||
}
|
||||
}
|
||||
}]
|
||||
}]
|
||||
},
|
||||
|
|
Загрузка…
Ссылка в новой задаче