File tree Expand file tree Collapse file tree 12 files changed +21721
-0
lines changed Expand file tree Collapse file tree 12 files changed +21721
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Editor configuration, see https://editorconfig.org
2
+ root = true
3
+
4
+ [* ]
5
+ charset = utf-8
6
+ indent_style = space
7
+ indent_size = 2
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [* .ts ]
12
+ quote_type = single
13
+
14
+ [* .md ]
15
+ max_line_length = off
16
+ trim_trailing_whitespace = false
Original file line number Diff line number Diff line change
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+
3
+ # Compiled output
4
+ /dist
5
+ /tmp
6
+ /out-tsc
7
+ /bazel-out
8
+
9
+ # Node
10
+ /node_modules
11
+ npm-debug.log
12
+ yarn-error.log
13
+
14
+ # IDEs and editors
15
+ .idea /
16
+ .project
17
+ .classpath
18
+ .c9 /
19
+ * .launch
20
+ .settings /
21
+ * .sublime-workspace
22
+
23
+ # Visual Studio Code
24
+ .vscode /*
25
+ ! .vscode /settings.json
26
+ ! .vscode /tasks.json
27
+ ! .vscode /launch.json
28
+ ! .vscode /extensions.json
29
+ .history /*
30
+
31
+ # Miscellaneous
32
+ /.angular /cache
33
+ .sass-cache /
34
+ /.sass-cache
35
+ /connect.lock
36
+ /coverage
37
+ /libpeerconnection.log
38
+ testem.log
39
+ /typings
40
+
41
+ # System files
42
+ .DS_Store
43
+ Thumbs.db
44
+
45
+ # profiling files
46
+ chrome-profiler-events * .json
47
+ speed-measure-plugin * .json
48
+
49
+ # Logs
50
+ /libpeerconnection.log
51
+ logs
52
+ * .log
53
+ npm-debug.log *
54
+ yarn-debug.log *
55
+ yarn-error.log *
56
+
57
+ # Runtime data
58
+ pids
59
+ * .pid
60
+ * .seed
61
+ * .pid.lock
62
+
63
+ # Directory for instrumented libs generated by jscoverage/JSCover
64
+ lib-cov
65
+
66
+ # Coverage directory used by tools like istanbul
67
+ coverage
68
+
69
+ # nyc test coverage
70
+ .nyc_output
71
+
72
+ # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
73
+ .grunt
74
+
75
+ # Bower dependency directory (https://bower.io/)
76
+ bower_components
77
+
78
+ # node-waf configuration
79
+ .lock-wscript
80
+
81
+ # Compiled binary addons (https://nodejs.org/api/addons.html)
82
+ build /Release
83
+
84
+ # Dependency directories
85
+ node_modules /
86
+ jspm_packages /
87
+
88
+ # TypeScript v1 declaration files
89
+ typings /
90
+
91
+ # Optional npm cache directory
92
+ .npm
93
+
94
+ # Optional eslint cache
95
+ .eslintcache
96
+
97
+ # Optional REPL history
98
+ .node_repl_history
99
+
100
+ # Output of 'npm pack'
101
+ * .tgz
102
+
103
+ # Yarn Integrity file
104
+ .yarn-integrity
105
+
106
+ # dotenv environment variables file
107
+ .env
108
+
109
+ # parcel-bundler cache (https://parceljs.org/)
110
+ .cache
111
+
112
+ # next.js build output
113
+ .next
114
+
115
+ # nuxt.js build output
116
+ .nuxt
117
+
118
+ # vuepress build output
119
+ .vuepress /dist
120
+
121
+ # Serverless directories
122
+ .serverless /
123
+
124
+ # FuseBox cache
125
+ .fusebox /
126
+
127
+ # DynamoDB Local files
128
+ .dynamodb /
129
+
130
+ # Ignored files
131
+ # /.vscode/*
132
+ * .code-workspace
133
+ build
134
+ dist
135
+ graphics
136
+ fonts
137
+
138
+ # Packages
139
+ packages
140
+ # packages/change-detection
141
+ # packages/component-loader
142
+ # packages/core
143
+ # packages/property
144
+ # packages/type
Original file line number Diff line number Diff line change
1
+ {
2
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=827846
3
+ "recommendations" : [" angular.ng-template" ]
4
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
3
+ "version" : " 0.2.0" ,
4
+ "configurations" : [
5
+ {
6
+ "name" : " ng serve" ,
7
+ "type" : " pwa-chrome" ,
8
+ "request" : " launch" ,
9
+ "preLaunchTask" : " npm: start" ,
10
+ "url" : " http://localhost:4200/"
11
+ },
12
+ {
13
+ "name" : " ng test" ,
14
+ "type" : " chrome" ,
15
+ "request" : " launch" ,
16
+ "preLaunchTask" : " npm: test" ,
17
+ "url" : " http://localhost:9876/debug.html"
18
+ }
19
+ ]
20
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ "cSpell.words" : [
3
+ " Gitter"
4
+ ]
5
+ }
Original file line number Diff line number Diff line change
1
+ {
2
+ // For more information, visit: https://go.microsoft.com/fwlink/?LinkId=733558
3
+ "version" : " 2.0.0" ,
4
+ "tasks" : [
5
+ {
6
+ "type" : " npm" ,
7
+ "script" : " start" ,
8
+ "isBackground" : true ,
9
+ "problemMatcher" : {
10
+ "owner" : " typescript" ,
11
+ "pattern" : " $tsc" ,
12
+ "background" : {
13
+ "activeOnStart" : true ,
14
+ "beginsPattern" : {
15
+ "regexp" : " (.*?)"
16
+ },
17
+ "endsPattern" : {
18
+ "regexp" : " bundle generation complete"
19
+ }
20
+ }
21
+ }
22
+ },
23
+ {
24
+ "type" : " npm" ,
25
+ "script" : " test" ,
26
+ "isBackground" : true ,
27
+ "problemMatcher" : {
28
+ "owner" : " typescript" ,
29
+ "pattern" : " $tsc" ,
30
+ "background" : {
31
+ "activeOnStart" : true ,
32
+ "beginsPattern" : {
33
+ "regexp" : " (.*?)"
34
+ },
35
+ "endsPattern" : {
36
+ "regexp" : " bundle generation complete"
37
+ }
38
+ }
39
+ }
40
+ }
41
+ ]
42
+ }
You can’t perform that action at this time.
0 commit comments