From c4986f3ca7127aae9392ff9becf384aa470be34d Mon Sep 17 00:00:00 2001 From: lirc572 <34601854+lirc572@users.noreply.github.com> Date: Mon, 11 Jan 2021 13:56:47 +0800 Subject: [PATCH] fix ts config --- package.json | 7 ++++++- tsconfig.json | 3 ++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2c9edd0..63ad6ca 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "displayName": "TD", "description": "declare daily temperature in VSCode", "version": "0.0.1", + "publisher": "lirc572", "engines": { "vscode": "^1.52.0" }, @@ -42,6 +43,10 @@ "lint": "eslint src --ext ts", "test": "node ./out/test/runTest.js" }, + "repository": { + "type": "git", + "url": "https://github.com/lirc572/TD-VSC.git" + }, "devDependencies": { "@types/glob": "^7.1.3", "@types/mocha": "^8.0.4", @@ -60,4 +65,4 @@ "puppeteer-extra": "^3.1.15", "puppeteer-extra-plugin-stealth": "^2.6.5" } -} +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index e88db8a..e26a657 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,7 +5,8 @@ "target": "es6", "outDir": "out", "lib": [ - "es6" + "es6", + "dom" ], "sourceMap": true, "rootDir": "src",