This commit is contained in:
Johannes Rieken
2018-11-16 12:46:26 +01:00
parent 7e8bb9e09b
commit 2c4f99957b
4 changed files with 2 additions and 6 deletions

View File

@ -15,7 +15,7 @@
"outFiles": [
"${workspaceRoot}/out/src/**/*.js"
],
"preLaunchTask": "npm:watch"
"preLaunchTask": "npm: watch"
}
]
}

View File

@ -4,7 +4,6 @@
"version": "2.0.0",
"tasks": [
{
"identifier": "npm:watch",
"type": "npm",
"script": "watch",
"problemMatcher": [

View File

@ -1,7 +1,6 @@
'use strict';
import * as vscode from 'vscode';
import * as fs from 'fs';
import { MemFS } from './fileSystemProvider';
export function activate(context: vscode.ExtensionContext) {

View File

@ -5,10 +5,8 @@
'use strict';
import * as vscode from 'vscode';
import * as fs from 'fs';
import * as path from 'path';
import { workspace } from 'vscode';
import * as vscode from 'vscode';
export class File implements vscode.FileStat {