From 3e472562ebd3dbb06fc23055af48d7c53322bda6 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 21 Jun 2023 04:27:41 +0200 Subject: [PATCH] fix: Make sure Typescript projects with `node16` module resolution can import the package Signed-off-by: Ferdinand Thiessen --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 27743262..48acd612 100644 --- a/package.json +++ b/package.json @@ -1,13 +1,14 @@ { "name": "@nextcloud/dialogs", "version": "4.0.1", - "description": "", + "description": "Nextcloud dialog helpers", "types": "dist/index.d.ts", "main": "dist/index.cjs", "module": "dist/index.mjs", "type": "module", "exports": { ".": { + "types": "./dist/index.d.ts", "import": "./dist/index.mjs", "require": "./dist/index.cjs" },