|
| 1 | +{ |
| 2 | + "$schema": "./node_modules/@angular/cli/lib/config/schema.json", |
| 3 | + "project": { |
| 4 | + "name": "demo-app" |
| 5 | + }, |
| 6 | + "apps": [ |
| 7 | + { |
| 8 | + "root": "src", |
| 9 | + "outDir": "dist/browser", |
| 10 | + "assets": [ |
| 11 | + "assets", |
| 12 | + "favicon.ico" |
| 13 | + ], |
| 14 | + "index": "index.html", |
| 15 | + "main": "main.ts", |
| 16 | + "polyfills": "polyfills.ts", |
| 17 | + "test": "test.ts", |
| 18 | + "tsconfig": "tsconfig.app.json", |
| 19 | + "testTsconfig": "tsconfig.spec.json", |
| 20 | + "prefix": "demo", |
| 21 | + "styles": [ |
| 22 | + "styles.scss" |
| 23 | + ], |
| 24 | + "scripts": [], |
| 25 | + "environmentSource": "environments/environment.ts", |
| 26 | + "environments": { |
| 27 | + "dev": "environments/environment.ts", |
| 28 | + "prod": "environments/environment.prod.ts" |
| 29 | + } |
| 30 | + }, |
| 31 | + { |
| 32 | + "root": "src", |
| 33 | + "outDir": "dist/server", |
| 34 | + "assets": [ |
| 35 | + "assets", |
| 36 | + "favicon.ico" |
| 37 | + ], |
| 38 | + "index": "index.html", |
| 39 | + "main": "main.server.ts", |
| 40 | + "test": "test.ts", |
| 41 | + "tsconfig": "tsconfig.server.json", |
| 42 | + "testTsconfig": "tsconfig.spec.json", |
| 43 | + "prefix": "demo", |
| 44 | + "styles": [ |
| 45 | + "styles.scss" |
| 46 | + ], |
| 47 | + "scripts": [], |
| 48 | + "environmentSource": "environments/environment.ts", |
| 49 | + "environments": { |
| 50 | + "dev": "environments/environment.ts", |
| 51 | + "prod": "environments/environment.prod.ts" |
| 52 | + }, |
| 53 | + "platform": "server" |
| 54 | + } |
| 55 | + ], |
| 56 | + "e2e": { |
| 57 | + "protractor": { |
| 58 | + "config": "./protractor.conf.js" |
| 59 | + } |
| 60 | + }, |
| 61 | + "lint": [ |
| 62 | + { |
| 63 | + "project": "src/tsconfig.app.json", |
| 64 | + "exclude": "**/node_modules/**" |
| 65 | + }, |
| 66 | + { |
| 67 | + "project": "src/tsconfig.spec.json", |
| 68 | + "exclude": "**/node_modules/**" |
| 69 | + }, |
| 70 | + { |
| 71 | + "project": "e2e/tsconfig.e2e.json", |
| 72 | + "exclude": "**/node_modules/**" |
| 73 | + } |
| 74 | + ], |
| 75 | + "test": { |
| 76 | + "karma": { |
| 77 | + "config": "./karma.conf.js" |
| 78 | + } |
| 79 | + }, |
| 80 | + "defaults": { |
| 81 | + "styleExt": "scss", |
| 82 | + "component": {} |
| 83 | + } |
| 84 | +} |
0 commit comments