diff --git a/angular.json b/angular.json index ee5517a..53bc5f4 100644 --- a/angular.json +++ b/angular.json @@ -5,7 +5,29 @@ "projects": { "frontend": { "projectType": "application", - "schematics": {}, + "schematics": { + "@schematics/angular:component": { + "skipTests": true + }, + "@schematics/angular:service": { + "skipTests": true + }, + "@schematics/angular:pipe": { + "skipTests": true + }, + "@schematics/angular:guard": { + "skipTests": true + }, + "@schematics/angular:class": { + "skipTests": true + }, + "@schematics/angular:directive": { + "skipTests": true + }, + "@schematics/angular:module": { + "skipTests": true + } + }, "root": "", "sourceRoot": "src", "prefix": "app", @@ -98,4 +120,4 @@ } } } -} +} \ No newline at end of file diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/core/services/api.service.ts b/src/app/core/services/api.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/core/services/notification.service.ts b/src/app/core/services/notification.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/auth/auth-routing.module.ts b/src/app/features/auth/auth-routing.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/auth/auth.module.ts b/src/app/features/auth/auth.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/auth/components/auth.component.ts b/src/app/features/auth/components/auth.component.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/auth/services/auth.service.ts b/src/app/features/auth/services/auth.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/cart/cart-routing.module.ts b/src/app/features/cart/cart-routing.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/cart/cart.module.ts b/src/app/features/cart/cart.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/cart/components/cart.component.ts b/src/app/features/cart/components/cart.component.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/cart/services/cart.service.ts b/src/app/features/cart/services/cart.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/products/components/products.component.ts b/src/app/features/products/components/products.component.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/products/products-routing.module.ts b/src/app/features/products/products-routing.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/products/products.module.ts b/src/app/features/products/products.module.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/features/products/services/products.service.ts b/src/app/features/products/services/products.service.ts new file mode 100644 index 0000000..e69de29 diff --git a/src/app/shared/shared.module.ts b/src/app/shared/shared.module.ts new file mode 100644 index 0000000..e69de29