Created
November 13, 2017 17:27
-
-
Save walbinjr/ffb3093f8db371ea5a1d9fa8015a4d98 to your computer and use it in GitHub Desktop.
Medium - angular cli json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
"project": { | |
"name": "overtime-ng" | |
}, | |
"apps": [ | |
{ | |
"root": "src", | |
"outDir": "dist", | |
"assets": [ | |
"assets", | |
"favicon.ico", | |
"manifest.json" | |
], | |
"index": "index.html", | |
"main": "main.ts", | |
"polyfills": "polyfills.ts", | |
"test": "test.ts", | |
"tsconfig": "tsconfig.app.json", | |
"testTsconfig": "tsconfig.spec.json", | |
"prefix": "app", | |
"serviceWorker": "true", | |
"styles": [ | |
"../node_modules/bootstrap/dist/css/bootstrap.min.css", | |
"styles.css" | |
], | |
"scripts": [ | |
"../node_modules/jquery/dist/jquery.min.js", | |
"../node_modules/tether/dist/js/tether.min.js", | |
"../node_modules/bootstrap/dist/js/bootstrap.min.js", | |
"../node_modules/moment/min/moment.min.js", | |
"../node_modules/moment/locale/pt-br.js" | |
], | |
"environmentSource": "environments/environment.ts", | |
"environments": { | |
"dev": "environments/environment.ts", | |
"prod": "environments/environment.prod.ts" | |
} | |
} | |
], | |
"e2e": { | |
"protractor": { | |
"config": "./protractor.conf.js" | |
} | |
}, | |
"lint": [ | |
{ | |
"project": "src/tsconfig.app.json", | |
"exclude": "**/node_modules/**" | |
}, | |
{ | |
"project": "src/tsconfig.spec.json", | |
"exclude": "**/node_modules/**" | |
}, | |
{ | |
"project": "e2e/tsconfig.e2e.json", | |
"exclude": "**/node_modules/**" | |
} | |
], | |
"test": { | |
"karma": { | |
"config": "./karma.conf.js" | |
} | |
}, | |
"defaults": { | |
"styleExt": "css", | |
"component": {} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment