feat: Admin Area General Settings and Categories 1.14

This commit is contained in:
OpenVelo Agent
2026-07-22 18:38:12 +00:00
parent 63f2746e56
commit 493e4b244d
5 changed files with 455 additions and 298 deletions
+7 -1
View File
@@ -17,7 +17,13 @@ module.exports = {
roots: [__dirname],
testMatch: ['<rootDir>/frontend/**/*.spec.ts'],
transform: {
'^.+\\.ts$': ['ts-jest', { tsconfig: '<rootDir>/frontend.tsconfig.json' }],
'^.+\\.(ts|js|mjs)$': ['ts-jest', { tsconfig: '<rootDir>/frontend.tsconfig.json', useESM: false }],
},
transformIgnorePatterns: [
'/node_modules/(?!(@angular|rxjs|tslib)/)',
],
moduleNameMapper: {
'^(\\.{1,2}/.*)\\.mjs$': '$1',
},
setupFiles: ['<rootDir>/frontend/jest.setup.ts'],
},