@@ -4,24 +4,26 @@ What follows is an overfiew of the files/folders in your newly generated project
44
55### Project Root
66
7- * .babelrc - configuration for [ Babel] , a JavaScript transpiler
8- * .editorconfig - config file used to keep conistent file editing across text editors
9- * .eslintrc - all of the rules applying to the ESLint JavaScript linter
10- * .travis.yml - a sample configuration file for Travis CI
11- * .yo-rc.json - a configuration file for the Angular Full-Stack Generator
12- * gulpfile.babel.js - Gulp task runner file
13- * karma.conf.js - Karma browser testing configuration
14- * mocha.conf.js - Mocha test framework configuration
15- * mocha.global.js - teardown file for Mocha
16- * package.json - npm manifest, contains information for all project dependencies
17- * protractor.conf.js - configuration for Protractor e2e test framework
18- * README.md - a readme file generator based on your options, for your scaffolded project
19- * spec.js - test file for Webpack used by Karma
20- * webpack.make.js - main file for Webpack configuration
21- * The following export the config from `webpack.make.js` for their respective build targets:
22- * webpack.dev.js
23- * webpack.test.js
24- * webpack.build.js
7+ ```
8+ .babelrc // configuration for [Babel], a JavaScript transpiler
9+ .editorconfig // config file used to keep conistent file editing across text editors
10+ .eslintrc // all of the rules applying to the ESLint JavaScript linter
11+ .travis.yml // a sample configuration file for Travis CI
12+ .yo-rc.json // a configuration file for the Angular Full-Stack Generator
13+ gulpfile.babel.js // Gulp task runner file
14+ karma.conf.js // Karma browser testing configuration
15+ mocha.conf.js // Mocha test framework configuration
16+ mocha.global.js // teardown file for Mocha
17+ package.json // npm manifest, contains information for all project dependencies
18+ protractor.conf.js // configuration for Protractor e2e test framework
19+ README.md // a readme file generator based on your options, for your scaffolded project
20+ spec.js // test file for Webpack used by Karma
21+ webpack.make.js // main file for Webpack configuration
22+ //The following export the config from `webpack.make.js` for their respective build targets:
23+ webpack.dev.js
24+ webpack.test.js
25+ webpack.build.js
26+ ```
2527
2628### ` client/ `
2729
0 commit comments