corrected types path

apparently this was not properly adjusted accross the board when moving
the folder
This commit is contained in:
Ulf Gebhardt 2025-02-18 14:50:52 +01:00
parent 7c9299c429
commit 09d0c619fd
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9
2 changed files with 3 additions and 3 deletions

View File

@ -113,8 +113,8 @@
"imports": { "imports": {
"#components/*": "./src/Components/*", "#components/*": "./src/Components/*",
"#utils/*": "./src/Utils/*", "#utils/*": "./src/Utils/*",
"#types/*": "./src/types/*",
"#src/*": "./src/*", "#src/*": "./src/*",
"#types/*": "./types/*",
"#root/*": "./*" "#root/*": "./*"
} }
} }

View File

@ -22,15 +22,15 @@
"paths": { "paths": {
"#components/*": ["./src/Components/*"], "#components/*": ["./src/Components/*"],
"#utils/*": ["./src/Utils/*"], "#utils/*": ["./src/Utils/*"],
"#src/*": ["./src/*"],
"#types/*": ["./src/types/*"], "#types/*": ["./src/types/*"],
"#src/*": ["./src/*"],
"#root/*": ["./*"] "#root/*": ["./*"]
} }
}, },
"include": ["src", "vite.config.ts", "setupTest.ts", "cypress.config.ts", "cypress/support/commands.ts", "cypress/support/component.ts"], "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"], "exclude": ["node_modules", "dist", "example", "rollup.config.mjss"],
"typeRoots": [ "typeRoots": [
"./types", "./src/types",
"./node_modules/@types/" "./node_modules/@types/"
] ]
} }