From 09d0c619fd7edc5fa50dfa28e1bcdb9400bc3883 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 18 Feb 2025 14:50:52 +0100 Subject: [PATCH] corrected types path apparently this was not properly adjusted accross the board when moving the folder --- package.json | 2 +- tsconfig.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index c1f20ccd..e73f5764 100644 --- a/package.json +++ b/package.json @@ -113,8 +113,8 @@ "imports": { "#components/*": "./src/Components/*", "#utils/*": "./src/Utils/*", + "#types/*": "./src/types/*", "#src/*": "./src/*", - "#types/*": "./types/*", "#root/*": "./*" } } diff --git a/tsconfig.json b/tsconfig.json index 69322b8e..2a66fedf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -22,15 +22,15 @@ "paths": { "#components/*": ["./src/Components/*"], "#utils/*": ["./src/Utils/*"], - "#src/*": ["./src/*"], "#types/*": ["./src/types/*"], + "#src/*": ["./src/*"], "#root/*": ["./*"] } }, "include": ["src", "vite.config.ts", "setupTest.ts", "cypress.config.ts", "cypress/support/commands.ts", "cypress/support/component.ts"], "exclude": ["node_modules", "dist", "example", "rollup.config.mjss"], "typeRoots": [ - "./types", + "./src/types", "./node_modules/@types/" ] }