2019-08-20 00:52:30 +00:00
|
|
|
{
|
|
|
|
"version": 1,
|
2019-08-20 01:27:15 +00:00
|
|
|
"projects": {
|
2019-09-05 01:36:09 +00:00
|
|
|
"contact": {
|
|
|
|
"root": "libs/contact",
|
|
|
|
"sourceRoot": "libs/contact/src",
|
2019-08-20 01:27:15 +00:00
|
|
|
"projectType": "library",
|
|
|
|
"schematics": {},
|
|
|
|
"architect": {
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": [
|
2019-09-05 01:36:09 +00:00
|
|
|
"libs/contact/tsconfig.lib.json",
|
|
|
|
"libs/contact/tsconfig.spec.json"
|
2019-08-20 01:27:15 +00:00
|
|
|
],
|
2019-09-05 01:36:09 +00:00
|
|
|
"exclude": ["**/node_modules/**", "!libs/contact/**"]
|
2019-08-20 01:27:15 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"builder": "@nrwl/jest:jest",
|
|
|
|
"options": {
|
2019-09-05 01:36:09 +00:00
|
|
|
"jestConfig": "libs/contact/jest.config.js",
|
|
|
|
"tsConfig": "libs/contact/tsconfig.spec.json",
|
|
|
|
"setupFile": "libs/contact/src/test-setup.ts"
|
2019-08-20 01:27:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-20 02:28:58 +00:00
|
|
|
},
|
|
|
|
"parent-form": {
|
|
|
|
"projectType": "application",
|
|
|
|
"schematics": {},
|
|
|
|
"root": "apps/parent-form",
|
|
|
|
"sourceRoot": "apps/parent-form/src",
|
|
|
|
"prefix": "nested-forms",
|
|
|
|
"architect": {
|
|
|
|
"build": {
|
|
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/apps/parent-form",
|
|
|
|
"index": "apps/parent-form/src/index.html",
|
|
|
|
"main": "apps/parent-form/src/main.ts",
|
|
|
|
"polyfills": "apps/parent-form/src/polyfills.ts",
|
|
|
|
"tsConfig": "apps/parent-form/tsconfig.app.json",
|
|
|
|
"aot": false,
|
|
|
|
"assets": [
|
|
|
|
"apps/parent-form/src/favicon.ico",
|
|
|
|
"apps/parent-form/src/assets"
|
|
|
|
],
|
|
|
|
"styles": ["apps/parent-form/src/styles.css"],
|
|
|
|
"scripts": []
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "apps/parent-form/src/environments/environment.ts",
|
|
|
|
"with": "apps/parent-form/src/environments/environment.prod.ts"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"optimization": true,
|
|
|
|
"outputHashing": "all",
|
|
|
|
"sourceMap": false,
|
|
|
|
"extractCss": true,
|
|
|
|
"namedChunks": false,
|
|
|
|
"aot": true,
|
|
|
|
"extractLicenses": true,
|
|
|
|
"vendorChunk": false,
|
|
|
|
"buildOptimizer": true,
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "2mb",
|
|
|
|
"maximumError": "5mb"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"serve": {
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "parent-form:build"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"browserTarget": "parent-form:build:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extract-i18n": {
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "parent-form:build"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": [
|
|
|
|
"apps/parent-form/tsconfig.app.json",
|
|
|
|
"apps/parent-form/tsconfig.spec.json"
|
|
|
|
],
|
|
|
|
"exclude": ["**/node_modules/**", "!apps/parent-form/**"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"builder": "@nrwl/jest:jest",
|
|
|
|
"options": {
|
|
|
|
"jestConfig": "apps/parent-form/jest.config.js",
|
|
|
|
"tsConfig": "apps/parent-form/tsconfig.spec.json",
|
|
|
|
"setupFile": "apps/parent-form/src/test-setup.ts"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"parent-form-e2e": {
|
|
|
|
"root": "apps/parent-form-e2e",
|
|
|
|
"sourceRoot": "apps/parent-form-e2e/src",
|
|
|
|
"projectType": "application",
|
|
|
|
"architect": {
|
|
|
|
"e2e": {
|
|
|
|
"builder": "@nrwl/cypress:cypress",
|
|
|
|
"options": {
|
|
|
|
"cypressConfig": "apps/parent-form-e2e/cypress.json",
|
|
|
|
"tsConfig": "apps/parent-form-e2e/tsconfig.e2e.json",
|
|
|
|
"devServerTarget": "parent-form:serve"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"devServerTarget": "parent-form:serve:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": ["apps/parent-form-e2e/tsconfig.e2e.json"],
|
|
|
|
"exclude": ["**/node_modules/**", "!apps/parent-form-e2e/**"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-02 19:23:01 +00:00
|
|
|
},
|
|
|
|
"global-form": {
|
|
|
|
"projectType": "application",
|
|
|
|
"schematics": {},
|
|
|
|
"root": "apps/global-form",
|
|
|
|
"sourceRoot": "apps/global-form/src",
|
|
|
|
"prefix": "nested-forms",
|
|
|
|
"architect": {
|
|
|
|
"build": {
|
|
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/apps/global-form",
|
|
|
|
"index": "apps/global-form/src/index.html",
|
|
|
|
"main": "apps/global-form/src/main.ts",
|
|
|
|
"polyfills": "apps/global-form/src/polyfills.ts",
|
|
|
|
"tsConfig": "apps/global-form/tsconfig.app.json",
|
|
|
|
"aot": false,
|
|
|
|
"assets": [
|
|
|
|
"apps/global-form/src/favicon.ico",
|
|
|
|
"apps/global-form/src/assets"
|
|
|
|
],
|
|
|
|
"styles": ["apps/global-form/src/styles.css"],
|
|
|
|
"scripts": []
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "apps/global-form/src/environments/environment.ts",
|
|
|
|
"with": "apps/global-form/src/environments/environment.prod.ts"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"optimization": true,
|
|
|
|
"outputHashing": "all",
|
|
|
|
"sourceMap": false,
|
|
|
|
"extractCss": true,
|
|
|
|
"namedChunks": false,
|
|
|
|
"aot": true,
|
|
|
|
"extractLicenses": true,
|
|
|
|
"vendorChunk": false,
|
|
|
|
"buildOptimizer": true,
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "2mb",
|
|
|
|
"maximumError": "5mb"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"serve": {
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "global-form:build"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"browserTarget": "global-form:build:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extract-i18n": {
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "global-form:build"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": [
|
|
|
|
"apps/global-form/tsconfig.app.json",
|
|
|
|
"apps/global-form/tsconfig.spec.json"
|
|
|
|
],
|
|
|
|
"exclude": ["**/node_modules/**", "!apps/global-form/**"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"builder": "@nrwl/jest:jest",
|
|
|
|
"options": {
|
|
|
|
"jestConfig": "apps/global-form/jest.config.js",
|
|
|
|
"tsConfig": "apps/global-form/tsconfig.spec.json",
|
|
|
|
"setupFile": "apps/global-form/src/test-setup.ts"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"global-form-e2e": {
|
|
|
|
"root": "apps/global-form-e2e",
|
|
|
|
"sourceRoot": "apps/global-form-e2e/src",
|
|
|
|
"projectType": "application",
|
|
|
|
"architect": {
|
|
|
|
"e2e": {
|
|
|
|
"builder": "@nrwl/cypress:cypress",
|
|
|
|
"options": {
|
|
|
|
"cypressConfig": "apps/global-form-e2e/cypress.json",
|
|
|
|
"tsConfig": "apps/global-form-e2e/tsconfig.e2e.json",
|
|
|
|
"devServerTarget": "global-form:serve"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"devServerTarget": "global-form:serve:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": ["apps/global-form-e2e/tsconfig.e2e.json"],
|
|
|
|
"exclude": ["**/node_modules/**", "!apps/global-form-e2e/**"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-09-06 03:24:05 +00:00
|
|
|
},
|
|
|
|
"baseline": {
|
|
|
|
"projectType": "application",
|
|
|
|
"schematics": {},
|
|
|
|
"root": "apps/baseline",
|
|
|
|
"sourceRoot": "apps/baseline/src",
|
|
|
|
"prefix": "base",
|
|
|
|
"architect": {
|
|
|
|
"build": {
|
|
|
|
"builder": "@angular-devkit/build-angular:browser",
|
|
|
|
"options": {
|
|
|
|
"outputPath": "dist/apps/baseline",
|
|
|
|
"index": "apps/baseline/src/index.html",
|
|
|
|
"main": "apps/baseline/src/main.ts",
|
|
|
|
"polyfills": "apps/baseline/src/polyfills.ts",
|
|
|
|
"tsConfig": "apps/baseline/tsconfig.app.json",
|
|
|
|
"aot": false,
|
|
|
|
"assets": [
|
|
|
|
"apps/baseline/src/favicon.ico",
|
|
|
|
"apps/baseline/src/assets"
|
|
|
|
],
|
|
|
|
"styles": ["apps/baseline/src/styles.css"],
|
|
|
|
"scripts": []
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"fileReplacements": [
|
|
|
|
{
|
|
|
|
"replace": "apps/baseline/src/environments/environment.ts",
|
|
|
|
"with": "apps/baseline/src/environments/environment.prod.ts"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"optimization": true,
|
|
|
|
"outputHashing": "all",
|
|
|
|
"sourceMap": false,
|
|
|
|
"extractCss": true,
|
|
|
|
"namedChunks": false,
|
|
|
|
"aot": true,
|
|
|
|
"extractLicenses": true,
|
|
|
|
"vendorChunk": false,
|
|
|
|
"buildOptimizer": true,
|
|
|
|
"budgets": [
|
|
|
|
{
|
|
|
|
"type": "initial",
|
|
|
|
"maximumWarning": "2mb",
|
|
|
|
"maximumError": "5mb"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"serve": {
|
|
|
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "baseline:build"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"browserTarget": "baseline:build:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"extract-i18n": {
|
|
|
|
"builder": "@angular-devkit/build-angular:extract-i18n",
|
|
|
|
"options": {
|
|
|
|
"browserTarget": "baseline:build"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": [
|
|
|
|
"apps/baseline/tsconfig.app.json",
|
|
|
|
"apps/baseline/tsconfig.spec.json"
|
|
|
|
],
|
|
|
|
"exclude": ["**/node_modules/**", "!apps/baseline/**"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"test": {
|
|
|
|
"builder": "@nrwl/jest:jest",
|
|
|
|
"options": {
|
|
|
|
"jestConfig": "apps/baseline/jest.config.js",
|
|
|
|
"tsConfig": "apps/baseline/tsconfig.spec.json",
|
|
|
|
"setupFile": "apps/baseline/src/test-setup.ts"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"baseline-e2e": {
|
|
|
|
"root": "apps/baseline-e2e",
|
|
|
|
"sourceRoot": "apps/baseline-e2e/src",
|
|
|
|
"projectType": "application",
|
|
|
|
"architect": {
|
|
|
|
"e2e": {
|
|
|
|
"builder": "@nrwl/cypress:cypress",
|
|
|
|
"options": {
|
|
|
|
"cypressConfig": "apps/baseline-e2e/cypress.json",
|
|
|
|
"tsConfig": "apps/baseline-e2e/tsconfig.e2e.json",
|
|
|
|
"devServerTarget": "baseline:serve"
|
|
|
|
},
|
|
|
|
"configurations": {
|
|
|
|
"production": {
|
|
|
|
"devServerTarget": "baseline:serve:production"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint": {
|
|
|
|
"builder": "@angular-devkit/build-angular:tslint",
|
|
|
|
"options": {
|
|
|
|
"tsConfig": ["apps/baseline-e2e/tsconfig.e2e.json"],
|
|
|
|
"exclude": ["**/node_modules/**", "!apps/baseline-e2e/**"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-08-20 01:27:15 +00:00
|
|
|
}
|
|
|
|
},
|
2019-08-20 00:52:30 +00:00
|
|
|
"cli": {
|
2019-08-20 02:28:58 +00:00
|
|
|
"defaultCollection": "@nrwl/angular"
|
|
|
|
},
|
|
|
|
"schematics": {
|
|
|
|
"@nrwl/angular:application": {
|
|
|
|
"unitTestRunner": "jest",
|
|
|
|
"e2eTestRunner": "cypress"
|
|
|
|
},
|
|
|
|
"@nrwl/angular:library": {
|
|
|
|
"unitTestRunner": "jest"
|
|
|
|
}
|
2019-08-20 00:52:30 +00:00
|
|
|
}
|
|
|
|
}
|