Input/angular.json

66 lines
1.6 KiB
JSON

{
"$schema": "../../node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"newProjectRoot": "projects",
"projects": {
"input": {
"projectType": "library",
"schematics": {
"@schematics/angular:component": {
"style": "scss",
"flat": false,
"inlineTemplate": false,
"inlineStyle": false,
"type": "Component"
},
"@schematics/angular:directive": {
"flat": false,
"type": "Directive"
},
"@schematics/angular:pipe": {
"flat": false,
"type": "Pipe"
},
"@schematics/angular:service": {
"flat": false,
"type": "Service"
},
"@schematics/angular:module": {
"flat": false
},
"@schematics/angular:guard": {
"flat": false,
"type": "Guard"
},
"@schematics/angular:interceptor": {
"flat": false,
"type": "Interceptor"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "input",
"architect": {
"build": {
"builder": "@angular/build:ng-packagr",
"configurations": {
"production": {
"tsConfig": "tsconfig.lib.prod.json"
},
"development": {
"tsConfig": "tsconfig.lib.json"
}
},
"defaultConfiguration": "production"
},
"test": {
"builder": "@angular/build:karma",
"options": {
"tsConfig": "tsconfig.spec.json"
}
}
}
}
}
}