Skip to content

Commit

Permalink
BW-602 #comment changes in pacakge
Browse files Browse the repository at this point in the history
  • Loading branch information
piya99 committed Aug 2, 2019
1 parent 3ecf8c6 commit 37d4c50
Show file tree
Hide file tree
Showing 11 changed files with 69 additions and 67 deletions.
17 changes: 6 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,20 +56,12 @@
"@ngx-share/core": "^7.1.2",
"angular2-cookie-law": "^7.0.1",
"axios": "^0.19.0",
"compression": "^1.7.4",
"core-js": "^3.1.4",
"dom-to-image": "^2.6.0",
"domino": "^2.1.3",
"edit-json-file": "^1.2.1",
"firebase": "^6.3.3",
"firebaseui": "^4.1.0",
"fs": "0.0.1-security",
"google-libphonenumber": "^3.2.2",
"hammerjs": "^2.0.8",
"jasmine-marbles": "^0.6.0",
"lodash": "^4.17.11",
"lodash.clonedeep": "^4.5.0",
"lodash.template": "^4.5.0",
"nativescript-angular": "8.0.2",
"nativescript-appversion": "^1.4.1",
"nativescript-camera": "^4.4.1",
Expand All @@ -81,7 +73,6 @@
"nativescript-geolocation": "^5.1.0",
"nativescript-imagecropper": "^1.0.5",
"nativescript-imagepicker": "^6.2.0",
"nativescript-loading-indicator": "^2.5.2",
"nativescript-plugin-firebase": "9.0.4",
"nativescript-screenshot": "0.0.2",
"nativescript-social-share": "^1.5.1",
Expand All @@ -96,13 +87,11 @@
"ngx-lazy-load-images": "^1.3.1",
"ngx-papaparse": "^3.0.2",
"ngx-swiper-wrapper": "^8.0.1",
"node-sass": "^4.12.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.2",
"stream": "0.0.2",
"tns-core-modules": "^6.0.3",
"tns-platform-declarations": "^6.0.3",
"uglifyjs-webpack-plugin": "^2.1.3",
"zone.js": "0.9.1"
},
"devDependencies": {
Expand All @@ -118,11 +107,15 @@
"@types/node": "^12.0.0",
"axios": "^0.19.0",
"codelyzer": "5.0.1",
"compression": "^1.7.4",
"core-js": "^3.1.4",
"cp": "^0.2.0",
"cpx": "^1.5.0",
"domino": "^2.1.3",
"highlightjs": "^9.12.0",
"husky": "^3.0.1",
"jasmine-core": "3.4.0",
"jasmine-marbles": "^0.6.0",
"jasmine-spec-reporter": "4.2.1",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.0",
Expand All @@ -135,11 +128,13 @@
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"katex": "^0.10.2",
"lodash": "^4.17.11",
"lodash.template": "^4.5.0",
"mathquill": "^0.10.1-a",
"nativescript-dev-webpack": "1.0.1",
"nativescript-pager": "^9.5.4",
"ng-katex": "^1.2.1",
"node-sass": "^4.12.0",
"protractor": "^5.4.2",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3",
Expand Down
2 changes: 1 addition & 1 deletion projects/shared-library/tsconfig.lib.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"compilerOptions": {
"outDir": "../../out-tsc/lib",
"target": "es2015",
"module": "es2015",
"module": "esnext",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
Expand Down
2 changes: 1 addition & 1 deletion projects/trivia-admin/src/app/routing/app.route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const routes: Routes = [
},
{
path: 'admin',
loadChildren: '../admin/admin.module#AdminModule',
loadChildren: () => import('../admin/admin.module').then(m => m.AdminModule),
canActivate: [AuthGuard],
canLoad: [AdminLoadGuard]
}
Expand Down
2 changes: 1 addition & 1 deletion projects/trivia-admin/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../../out-tsc/app",
"module": "es2015",
"module": "esnext",
"types": []
},
"exclude": [
Expand Down
2 changes: 1 addition & 1 deletion projects/trivia-editor/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { NgQuillTexModule } from 'ng-quill-tex';
maxAge: 20
}),

StoreRouterConnectingModule,
StoreRouterConnectingModule.forRoot(),

//rwa modules
CoreModule,
Expand Down
8 changes: 4 additions & 4 deletions projects/trivia/src/app/routing/app.route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const routes: Routes = [
},
{
path: 'dashboard',
loadChildren: '../dashboard/dashboard.module#DashboardModule',
loadChildren: () => import('../dashboard/dashboard.module').then(m => m.DashboardModule),
},
{
path: 'privacy-policy',
Expand All @@ -22,18 +22,18 @@ export const routes: Routes = [
},
{
path: 'user',
loadChildren: '../user/user.module#UserModule',
loadChildren: () => import('../user/user.module').then(m => m.UserModule),
resolve: { "categories": CategoriesResolver, "tags": TagsResolver }
},
{
path: 'game-play',
loadChildren: '../game-play/game-play.module#GamePlayModule',
loadChildren: () => import('../game-play/game-play.module').then(m => m.GamePlayModule),
canActivate: [AuthGuard],
resolve: { "categories": CategoriesResolver, "tags": TagsResolver }
},
{
path: 'bulk',
loadChildren: '../bulk/bulk.module#BulkModule',
loadChildren: () => import('../bulk/bulk.module').then(m => m.BulkModule),
canActivate: [AuthGuard],
canLoad: [BulkLoadGuard]
},
Expand Down
2 changes: 1 addition & 1 deletion projects/trivia/tsconfig.app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "../out-tsc/app",
"module": "es2015",
"module": "esnext",
"types": []
},
"exclude": [
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.aot.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "es2015",
"module": "esnext",
"moduleResolution": "node",
"baseUrl": "./",
"paths": {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.esm.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig",
"compilerOptions": {
"module": "es2015",
"module": "esnext",
"moduleResolution": "node"
}
}
95 changes: 51 additions & 44 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,53 @@
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"declaration": false,
"module": "es2015",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"types": [
"node",
"jest"
],
"lib": [
"es2017",
"dom",
"es6",
"es2015.iterable"
],
"paths": {
"shared-library/*": [
"./projects/shared-library/src/lib/*"
],
"core-js/es7/reflect": [
"node_modules/core-js/proposals/reflect-metadata"
],
"core-js/es6/*": [
"node_modules/core-js/es/*"
],
"~/*": [
"projects/trivia/src/*"
]
}
},
"exclude": [
"**/*.tns.ts",
"**/*.android.ts",
"**/*.ios.ts",
"app/main.aot.ts"
]
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"module": "esnext",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"types": [
"node",
"jest"
],
"lib": [
"es2018",
"dom",
"es6",
"es2015.iterable"
],
"paths": {
"shared-library/*": [
"./projects/shared-library/src/lib/*"
],
"core-js/es7/reflect": [
"node_modules/core-js/proposals/reflect-metadata"
],
"core-js/es6/*": [
"node_modules/core-js/es/*"
],
"~/*": [
"projects/trivia/src/*"
]
}
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true
},
"exclude": [
"**/*.tns.ts",
"**/*.android.ts",
"**/*.ios.ts",
"app/main.aot.ts"
]
}
2 changes: 1 addition & 1 deletion tsconfig.tns.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "es2015",
"module": "esnext",
"moduleResolution": "node",
"experimentalDecorators": true,
"baseUrl": "./",
Expand Down

0 comments on commit 37d4c50

Please sign in to comment.