-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvendor.ts
42 lines (34 loc) · 1.07 KB
/
vendor.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Snapshot the ~/app.css and the theme
import * as application from 'tns-core-modules/application';
import 'ui/styling/style-scope';
const appCssContext = require.context("~/", false, /^\.\/app\.(css|scss|less|sass)$/);
global.registerWebpackModules(appCssContext);
application.loadAppCss();
import './vendor-platform';
import 'reflect-metadata';
// ng
import '@angular/platform-browser';
import '@angular/core';
import '@angular/common';
import '@angular/forms';
import '@angular/router';
// ng libs
import '@ngrx/effects';
import '@ngrx/store';
import '@ngrx/router-store';
// ns-ng
import 'nativescript-angular/platform-static';
import 'nativescript-angular/common';
import 'nativescript-angular/forms';
import 'nativescript-angular/http-client';
import 'nativescript-angular/router';
// shared libs across all apps in Nx workspace
// TODO: import any shared libs here
// ns plugins
import 'nativescript-ngx-fonticon';
/**
* app shared code
* this list will be barrels of code imported in many different modules
* local to the {N} app here only
*/
import './modules/shared';