From 3eb66a028d0b850204f235d037630b63a439bd87 Mon Sep 17 00:00:00 2001 From: Youssef Amr El-Shehaby Date: Fri, 24 Nov 2023 12:57:47 +0200 Subject: [PATCH] Update package.json and tsconfig.json --- src/assets/logo.png => logo.png | Bin package.json | 2 +- tsconfig.json | 10 +++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) rename src/assets/logo.png => logo.png (100%) diff --git a/src/assets/logo.png b/logo.png similarity index 100% rename from src/assets/logo.png rename to logo.png diff --git a/package.json b/package.json index 24d2fd0..618a323 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Project Explorer", "description": "An extension for searching and creating page and layout files in a Next.js application project.", "publisher": "monstajoedev", - "icon": "./src/assets/logo.png", + "icon": "./logo.png", "version": "0.1.0", "engines": { "vscode": "^1.84.0" diff --git a/tsconfig.json b/tsconfig.json index 6954702..18471a5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,14 +4,18 @@ "target": "ES2022", "outDir": "out", "lib": [ - "ES2022" + "ES2022", + "DOM" + ], + "types": [ + "node" ], "sourceMap": true, "rootDir": "src", - "strict": true /* enable all strict type-checking options */ + "strict": true /* enable all strict type-checking options */ /* Additional Checks */ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */ // "noUnusedParameters": true, /* Report errors on unused parameters. */ } -} +} \ No newline at end of file