Skip to content

Commit

Permalink
Actually build in partial mode
Browse files Browse the repository at this point in the history
  • Loading branch information
PowerKiKi committed May 27, 2021
1 parent 22a4108 commit cb604cc
Showing 1 changed file with 33 additions and 9 deletions.
42 changes: 33 additions & 9 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.css"],
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": [],
"vendorChunk": true,
"extractLicenses": false,
Expand Down Expand Up @@ -86,16 +91,27 @@
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.spec.json",
"karmaConfig": "karma.conf.js",
"assets": ["src/favicon.ico", "src/assets"],
"styles": ["src/styles.css"],
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.css"
],
"scripts": []
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"options": {
"tsConfig": ["tsconfig.app.json", "tsconfig.spec.json", "e2e/tsconfig.json"],
"exclude": ["**/node_modules/**"]
"tsConfig": [
"tsconfig.app.json",
"tsconfig.spec.json",
"e2e/tsconfig.json"
],
"exclude": [
"**/node_modules/**"
]
}
},
"e2e": {
Expand Down Expand Up @@ -124,10 +140,16 @@
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"tsConfig": "projects/fab-speed-dial/tsconfig.lib.json",
"project": "projects/fab-speed-dial/ng-package.json"
},
"configurations": {}
"configurations": {
"production": {
"tsConfig": "projects/fab-speed-dial/tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "projects/fab-speed-dial/tsconfig.lib.json"
}
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
Expand All @@ -144,7 +166,9 @@
"projects/fab-speed-dial/tsconfig.lib.json",
"projects/fab-speed-dial/tsconfig.spec.json"
],
"exclude": ["**/node_modules/**"]
"exclude": [
"**/node_modules/**"
]
}
}
}
Expand Down

0 comments on commit cb604cc

Please sign in to comment.