From a9e7b08a7b7353fa844aa7841a3f7a4285b0cdfd Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 9 Feb 2023 17:14:11 +0100 Subject: [PATCH] turn off no-unresolved rule (not compatible with vite) --- src/Umbraco.Web.UI.Client/.eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Umbraco.Web.UI.Client/.eslintrc.json b/src/Umbraco.Web.UI.Client/.eslintrc.json index d85e75d152..d021d2caf6 100644 --- a/src/Umbraco.Web.UI.Client/.eslintrc.json +++ b/src/Umbraco.Web.UI.Client/.eslintrc.json @@ -31,6 +31,7 @@ }, "rules": { "no-var": "error", + "import/no-unresolved": "off", "import/order": "warn", "local-rules/bad-type-import": "error", "local-rules/no-direct-api-import": "warn",