12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
- "version": 1,
- "newProjectRoot": "projects",
- "projects": {
- "fae-boo": {
- "root": "",
- "sourceRoot": "src/main/webapp",
- "projectType": "application",
- "architect": {}
- }
- },
- "defaultProject": "fae-boo",
- "cli": {
- "packageManager": "npm"
- },
- "schematics": {
- "@schematics/angular:component": {
- "inlineStyle": true,
- "inlineTemplate": false,
- "spec": false,
- "prefix": "jhi",
- "styleExt": "scss"
- },
- "@schematics/angular:directive": {
- "spec": false,
- "prefix": "jhi"
- },
- "@schematics/angular:guard": {
- "spec": false
- },
- "@schematics/angular:pipe": {
- "spec": false
- },
- "@schematics/angular:service": {
- "spec": false
- }
- }
- }
|