modernize prevewhtml-sample

This commit is contained in:
Johannes Rieken
2016-12-30 10:58:25 +01:00
parent 1d64e05329
commit 2b624c6388
4 changed files with 23 additions and 22 deletions

View File

@ -4,22 +4,22 @@
"description": "A sample illustrating the use of TextContentProviders and the `vscode.previewHtml` command, introduce in 0.10.7",
"version": "0.0.10",
"publisher": "eg2",
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-samples/issues",
"email": "egamma@microsoft.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples.git"
},
"galleryBanner": {
"color": "#5c2d91",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-extension-samples/issues",
"email": "egamma@microsoft.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples.git"
},
"homepage": "https://github.com/Microsoft/vscode-extension-samples/tree/master/textdocumentprovider-sample/README.md",
"categories": [
"Other"
],
"categories": [
"Other"
],
"engines": {
"vscode": "^0.10.7"
},
@ -51,6 +51,7 @@
},
"devDependencies": {
"typescript": "^1.7.5",
"vscode": "^0.11.0"
"vscode": "^1.0.0",
"@types/node": "*"
}
}
}

View File

@ -3,11 +3,13 @@
"module": "commonjs",
"target": "es5",
"outDir": "out",
"noLib": true,
"lib": [
"es6"
],
"sourceMap": true,
"rootDir": "."
"rootDir": "src"
},
"exclude": [
"node_modules"
]
}
}

View File

@ -1 +0,0 @@
/// <reference path="../node_modules/vscode/typings/node.d.ts" />

View File

@ -1 +0,0 @@
/// <reference path="../node_modules/vscode/typings/index.d.ts" />