From 7fd483376eaee6e193a7ad120c2f61cdab09228c Mon Sep 17 00:00:00 2001 From: Egor fureunoir Gorbunov Date: Fri, 27 Jun 2025 07:20:04 +0300 Subject: [PATCH] Features: 1) Add favicon.svg to the public directory; 2) Update tsconfig.json to include baseUrl configuration; Fixes: 1) Correct tsconfig.json paths for styles import; Extra: 1) Add .gitkeep placeholders for new pages, components, and styles directories. --- storefront/public/favicon.svg | 25 ++++++++++++++++++++++++ storefront/{ => src/components}/.gitkeep | 0 storefront/src/pages/.gitkeep | 0 storefront/src/styles/.gitkeep | 0 storefront/tsconfig.json | 3 ++- 5 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 storefront/public/favicon.svg rename storefront/{ => src/components}/.gitkeep (100%) create mode 100644 storefront/src/pages/.gitkeep create mode 100644 storefront/src/styles/.gitkeep diff --git a/storefront/public/favicon.svg b/storefront/public/favicon.svg new file mode 100644 index 00000000..356c7ae0 --- /dev/null +++ b/storefront/public/favicon.svg @@ -0,0 +1,25 @@ + + + + + + + + + + diff --git a/storefront/.gitkeep b/storefront/src/components/.gitkeep similarity index 100% rename from storefront/.gitkeep rename to storefront/src/components/.gitkeep diff --git a/storefront/src/pages/.gitkeep b/storefront/src/pages/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/storefront/src/styles/.gitkeep b/storefront/src/styles/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/storefront/tsconfig.json b/storefront/tsconfig.json index ffb2ac4b..8cd3c184 100644 --- a/storefront/tsconfig.json +++ b/storefront/tsconfig.json @@ -1,5 +1,6 @@ { "compilerOptions": { + "baseUrl": "src/", "target": "ES2017", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, @@ -19,7 +20,7 @@ } ], "paths": { - "@/*": ["./src/*"] + "@/styles": ["./src/styles"] } }, "include": [