Files and Folders Flashcards

1
Q

Application folder

A

src

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Support files

A

files outside of the src folder

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

The root component of the application

A

app/app.component/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

The root module that tells angular how to assemble the application

A

app/app.module.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Folder where images and other wholesale files go

A

assets/*

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Folder with destination environment files.

A

environments/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

website icon

A

favicon.ico

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

main entry point of the application.

A

main.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

File for normalizing differences between browsers.

A

polyfills.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

File for global styling

A

styles.css

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Main entry point for tests

A

tests.ts

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

TypeScript compiler configuration

A

tsconfig.{item-being-configured}.json

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

TypeScript application configuration.

A

tsconfig.app.json

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

TypeScript test configuration

A

tsconfig.spec.json

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Folder for end to end testing

A

e2e/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Configuration for angular CLI

A

.angular-cli.json

17
Q

Configuration file for application editors

A

.editorconfig

18
Q

GIT configuration file that makes sure autogenerated files are not committed to source control.

A

.gitignore

19
Q

Unit test configuration for Karma test runner

A

karma.conf.js

20
Q

npm configuration for third party packages for the application

A

package.json

21
Q

End to end test configuration for protractor.

A

protractor.config.js

22
Q

Basic project documentation

A

README.md

23
Q

TypeScript configuration for IDE to pick up and give helpful tooling.

A

tsconfig.json

24
Q

Lint (tool for maintaining code) configuration file

A

tslint.json