Toggle navigation
P3X GitList Snapshot
GitHub
Repo
Changelog
To do
Releases
Themes
Change log
Loading change log ...
To do ...
Loading todo ...
browsing:
603a16d238fd6c273303390904b3f46ee7085129
Branches
master
Tags
1.1.129-287
1.1.113-149
1.1.108-143
1.1.95-138
1.1.92-119
1.0.35-18
1.0.13-14
Files
Commits
Log
Graph
Stats
angular-compile.git
test
angular-webpack
angular
module.ts
RSS
Git
Fetch origin
Download
ZIP
TAR
Clone
Raw
View
History
Clone
SSH
HTTPS
Blames found: 17
Mode: application/typescript
Binary: false
Hang on, we reloading big blames...
69db3407
import { NgModule, } from '@angular/core';
f46e4d96
fb0911e3
import { RouterModule, Routes } from '@angular/router';
83396ced
import { CorifeusMaterialModule } from 'corifeus-web-material'
dbff41e2
f46e4d96
import {Page } from './page'; import {
69db3407
CompileModule,
f46e4d96
} from '../../../src';
fb0911e3
export const routes: Routes = [ { path: '', component: Page, }, ];
f46e4d96
@NgModule({ imports: [
83396ced
// BrowserModule,
fb0911e3
/// CompileModule,
83396ced
CorifeusMaterialModule,
fb0911e3
// CorifeusModule, RouterModule.forRoot(routes),
c605ea6f
83396ced
CompileModule
f46e4d96
], declarations: [ Page, ], providers: [ ], bootstrap: [ Page ] }) export class Module { };