-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nicola Tommasi
committed
Jul 2, 2020
1 parent
4a6fa51
commit 603cd5c
Showing
6 changed files
with
333 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,159 +1,170 @@ | ||
{ | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"ngx-joyride": { | ||
"projectType": "library", | ||
"root": "projects/ngx-joyride", | ||
"sourceRoot": "projects/ngx-joyride/src", | ||
"prefix": "lib", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-ng-packagr:build", | ||
"options": { | ||
"tsConfig": "projects/ngx-joyride/tsconfig.lib.json", | ||
"project": "projects/ngx-joyride/ng-package.json" | ||
}, | ||
"showCircularDependencies": false, | ||
"configurations": { | ||
"production": { | ||
"tsConfig": "projects/ngx-joyride/tsconfig.lib.prod.json" | ||
} | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "projects/ngx-joyride/src/test.ts", | ||
"tsConfig": "projects/ngx-joyride/tsconfig.spec.json", | ||
"karmaConfig": "projects/ngx-joyride/karma.conf.js" | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"projects/ngx-joyride/tsconfig.lib.json", | ||
"projects/ngx-joyride/tsconfig.spec.json" | ||
], | ||
"exclude": ["**/node_modules/**"] | ||
} | ||
} | ||
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | ||
"version": 1, | ||
"newProjectRoot": "projects", | ||
"projects": { | ||
"ngx-joyride": { | ||
"projectType": "library", | ||
"root": "projects/ngx-joyride", | ||
"sourceRoot": "projects/ngx-joyride/src", | ||
"prefix": "lib", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-ng-packagr:build", | ||
"options": { | ||
"tsConfig": "projects/ngx-joyride/tsconfig.lib.json", | ||
"project": "projects/ngx-joyride/ng-package.json" | ||
}, | ||
"showCircularDependencies": false, | ||
"configurations": { | ||
"production": { | ||
"tsConfig": "projects/ngx-joyride/tsconfig.lib.prod.json" | ||
} | ||
} | ||
}, | ||
"demo": { | ||
"projectType": "application", | ||
"schematics": {}, | ||
"root": "projects/demo", | ||
"sourceRoot": "projects/demo/src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist/demo", | ||
"index": "projects/demo/src/index.html", | ||
"main": "projects/demo/src/main.ts", | ||
"polyfills": "projects/demo/src/polyfills.ts", | ||
"tsConfig": "projects/demo/tsconfig.app.json", | ||
"aot": true, | ||
"assets": [ | ||
"projects/demo/src/favicon.ico", | ||
"projects/demo/src/assets" | ||
], | ||
"styles": ["projects/demo/src/styles.css"], | ||
"scripts": [], | ||
"showCircularDependencies": false | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "projects/demo/src/environments/environment.ts", | ||
"with": "projects/demo/src/environments/environment.prod.ts" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
"namedChunks": false, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "2mb", | ||
"maximumError": "5mb" | ||
}, | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "6kb", | ||
"maximumError": "10kb" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "demo:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "demo:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "demo:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "projects/demo/src/test.ts", | ||
"polyfills": "projects/demo/src/polyfills.ts", | ||
"tsConfig": "projects/demo/tsconfig.spec.json", | ||
"karmaConfig": "projects/demo/karma.conf.js", | ||
"assets": [ | ||
"projects/demo/src/favicon.ico", | ||
"projects/demo/src/assets" | ||
], | ||
"styles": ["projects/demo/src/styles.css"], | ||
"scripts": [] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"projects/demo/tsconfig.app.json", | ||
"projects/demo/tsconfig.spec.json", | ||
"projects/demo/e2e/tsconfig.json" | ||
], | ||
"exclude": ["**/node_modules/**"] | ||
} | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "projects/ngx-joyride/src/test.ts", | ||
"tsConfig": "projects/ngx-joyride/tsconfig.spec.json", | ||
"karmaConfig": "projects/ngx-joyride/karma.conf.js" | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"projects/ngx-joyride/tsconfig.lib.json", | ||
"projects/ngx-joyride/tsconfig.spec.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"demo": { | ||
"projectType": "application", | ||
"schematics": {}, | ||
"root": "projects/demo", | ||
"sourceRoot": "projects/demo/src", | ||
"prefix": "app", | ||
"architect": { | ||
"build": { | ||
"builder": "@angular-devkit/build-angular:browser", | ||
"options": { | ||
"outputPath": "dist/demo", | ||
"index": "projects/demo/src/index.html", | ||
"main": "projects/demo/src/main.ts", | ||
"polyfills": "projects/demo/src/polyfills.ts", | ||
"tsConfig": "projects/demo/tsconfig.app.json", | ||
"aot": true, | ||
"assets": [ | ||
"projects/demo/src/favicon.ico", | ||
"projects/demo/src/assets" | ||
], | ||
"styles": [ | ||
"projects/demo/src/styles.css" | ||
], | ||
"scripts": [], | ||
"showCircularDependencies": false | ||
}, | ||
"configurations": { | ||
"production": { | ||
"fileReplacements": [ | ||
{ | ||
"replace": "projects/demo/src/environments/environment.ts", | ||
"with": "projects/demo/src/environments/environment.prod.ts" | ||
} | ||
], | ||
"optimization": true, | ||
"outputHashing": "all", | ||
"sourceMap": false, | ||
"extractCss": true, | ||
"namedChunks": false, | ||
"extractLicenses": true, | ||
"vendorChunk": false, | ||
"buildOptimizer": true, | ||
"budgets": [ | ||
{ | ||
"type": "initial", | ||
"maximumWarning": "2mb", | ||
"maximumError": "5mb" | ||
}, | ||
"e2e": { | ||
"builder": "@angular-devkit/build-angular:protractor", | ||
"options": { | ||
"protractorConfig": "projects/demo/e2e/protractor.conf.js", | ||
"devServerTarget": "demo:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "demo:serve:production" | ||
} | ||
} | ||
{ | ||
"type": "anyComponentStyle", | ||
"maximumWarning": "6kb", | ||
"maximumError": "10kb" | ||
} | ||
] | ||
} | ||
} | ||
}, | ||
"serve": { | ||
"builder": "@angular-devkit/build-angular:dev-server", | ||
"options": { | ||
"browserTarget": "demo:build" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"browserTarget": "demo:build:production" | ||
} | ||
} | ||
}, | ||
"extract-i18n": { | ||
"builder": "@angular-devkit/build-angular:extract-i18n", | ||
"options": { | ||
"browserTarget": "demo:build" | ||
} | ||
}, | ||
"test": { | ||
"builder": "@angular-devkit/build-angular:karma", | ||
"options": { | ||
"main": "projects/demo/src/test.ts", | ||
"polyfills": "projects/demo/src/polyfills.ts", | ||
"tsConfig": "projects/demo/tsconfig.spec.json", | ||
"karmaConfig": "projects/demo/karma.conf.js", | ||
"assets": [ | ||
"projects/demo/src/favicon.ico", | ||
"projects/demo/src/assets" | ||
], | ||
"styles": [ | ||
"projects/demo/src/styles.css" | ||
], | ||
"scripts": [] | ||
} | ||
}, | ||
"lint": { | ||
"builder": "@angular-devkit/build-angular:tslint", | ||
"options": { | ||
"tsConfig": [ | ||
"projects/demo/tsconfig.app.json", | ||
"projects/demo/tsconfig.spec.json", | ||
"projects/demo/e2e/tsconfig.json" | ||
], | ||
"exclude": [ | ||
"**/node_modules/**" | ||
] | ||
} | ||
}, | ||
"e2e": { | ||
"builder": "@angular-devkit/build-angular:protractor", | ||
"options": { | ||
"protractorConfig": "projects/demo/e2e/protractor.conf.js", | ||
"devServerTarget": "demo:serve" | ||
}, | ||
"configurations": { | ||
"production": { | ||
"devServerTarget": "demo:serve:production" | ||
} | ||
} | ||
} | ||
}, | ||
"defaultProject": "ngx-joyride" | ||
} | ||
} | ||
} | ||
}, | ||
"defaultProject": "ngx-joyride", | ||
"cli": { | ||
"analytics": false | ||
} | ||
} |
Oops, something went wrong.