From 1379180722a3a3bbfb578975d9e3b00ce2c41f79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20B=C5=82a=C5=BCejewicz=20=28Peter=20Blazejewicz=29?= Date: Sat, 22 Feb 2020 11:09:48 +0100 Subject: [PATCH] chore(Microsoft.JSInterop): definition type file extension fix This is a minor change, correcting name of the file pointed as explicit type definition file (`d.ts`). On most installations (VSCode) the type definition lookup works correctly anyway. Thanks! --- src/JSInterop/Microsoft.JSInterop.JS/src/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/JSInterop/Microsoft.JSInterop.JS/src/package.json b/src/JSInterop/Microsoft.JSInterop.JS/src/package.json index 37273c492f45..c3f5ff84ea60 100644 --- a/src/JSInterop/Microsoft.JSInterop.JS/src/package.json +++ b/src/JSInterop/Microsoft.JSInterop.JS/src/package.json @@ -3,7 +3,7 @@ "version": "5.0.0-dev", "description": "Provides abstractions and features for interop between .NET and JavaScript code.", "main": "dist/Microsoft.JSInterop.js", - "types": "dist/Microsoft.JSInterop.d.js", + "types": "dist/Microsoft.JSInterop.d.ts", "scripts": { "clean": "node node_modules/rimraf/bin.js ./dist", "build": "npm run clean && npm run build:esm",