From 10d0ba400cbcaf7d9aa245059b29d567c012559d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 2 Dec 2022 13:21:24 +0100 Subject: [PATCH] package.json: set type to module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes errors like: ``` SyntaxError: Cannot use import statement outside a module ``` Signed-off-by: Jakub SokoĊ‚owski --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 8d823b1ecd..927b47c14b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,7 @@ { "name": "@waku/root", "private": true, + "type": "module", "workspaces": [ "packages/byte-utils", "packages/interfaces",