Skip to content

Commit

Permalink
fix: include job search ui module into jobs module
Browse files Browse the repository at this point in the history
  • Loading branch information
rahul-rocket committed May 7, 2024
1 parent 1b58ac0 commit 0cfbbc2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/gauzy/src/app/pages/jobs/jobs.module.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { JobSearchUiModule } from '@gauzy/job-search-ui-plugin';
import { JobsRoutingModule } from './jobs-routing.module';
import { JobLayoutComponent } from './job-layout/job-layout.component';
import { SharedModule } from '../../@shared/shared.module';
import { JobTableComponentsModule } from './table-components/job-table-components.module';

@NgModule({
declarations: [JobLayoutComponent],
imports: [CommonModule, JobsRoutingModule, SharedModule, JobTableComponentsModule]
imports: [CommonModule, JobsRoutingModule, SharedModule, JobTableComponentsModule, JobSearchUiModule]
})
export class JobsModule { }
5 changes: 4 additions & 1 deletion packages/plugins/job-search-ui/tsconfig.lib.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
"declarationMap": false
},
"angularCompilerOptions": {
"compilationMode": "partial"
"compilationMode": "partial",
"fullTemplateTypeCheck": false,
"strictTemplates": false,
"strictInjectionParameters": false
}
}

0 comments on commit 0cfbbc2

Please sign in to comment.