Mercurial > hg > ugly-duckling
annotate src/main.ts @ 349:bf038a51f7e3
Restore some of the feature related logic from waveform.component into a utilities module. Introduce some additional types for representing reshaped features. A work in progress.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Thu, 25 May 2017 17:57:03 +0100 |
parents | 53ea6406d601 |
children |
rev | line source |
---|---|
dev@236 | 1 import 'polyfills'; |
dev@236 | 2 import { enableProdMode } from '@angular/core'; |
dev@236 | 3 import { platformBrowserDynamic } from '@angular/platform-browser-dynamic'; |
angular-cli@0 | 4 |
dev@236 | 5 import { AppModule } from './app/app.module'; |
angular-cli@0 | 6 import { environment } from './environments/environment'; |
angular-cli@0 | 7 |
angular-cli@0 | 8 if (environment.production) { |
angular-cli@0 | 9 enableProdMode(); |
angular-cli@0 | 10 } |
angular-cli@0 | 11 |
angular-cli@0 | 12 platformBrowserDynamic().bootstrapModule(AppModule); |