From 50d1f3176cbd0eae07d826fdb3f18b7e07e4e32b Mon Sep 17 00:00:00 2001 From: Garrone Joseph Date: Tue, 25 Aug 2020 02:53:10 +0200 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0a389f7..d8c7051 100644 --- a/README.md +++ b/README.md @@ -122,8 +122,8 @@ For example you would replace: ```json { - "main": "./dist/index.js", - "types": "./dist/index.d.ts", + "main": "dist/index.js", + "types": "dist/index.d.ts", } ``` @@ -131,8 +131,8 @@ by: ```json { - "main": "./dist/index.js", - "types": "./src/index.ts", + "main": "dist/index.js", + "types": "src/index.ts", } ```