kar-cw/angular.json

38 lines
938 B
JSON
Raw Normal View History

2024-03-24 20:45:07 +01:00
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"projects": {
2024-03-29 18:35:55 +01:00
"kar-cw": {
"projectType": "library",
"root": "",
"sourceRoot": "src",
2024-03-29 18:35:55 +01:00
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:ng-packagr",
"options": {
"project": "ng-package.json"
2024-03-29 18:35:55 +01:00
},
"configurations": {
"production": {
"tsConfig": "tsconfig.prod.json"
2024-03-29 18:35:55 +01:00
},
"development": {
"tsConfig": "tsconfig.json"
2024-03-29 18:35:55 +01:00
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
"tsConfig": "tsconfig.spec.json",
2024-03-29 18:35:55 +01:00
"polyfills": [
"zone.js",
"zone.js/testing"
]
}
}
}
}
2024-03-24 20:45:07 +01:00
}
}