Skip to content

Commit 5661236

Browse files
authored
Merge pull request #4 from geeklearningio/release/0.1.0
Release/0.1.0
2 parents ff9417b + db26d9e commit 5661236

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+8138
-290
lines changed

.angular-cli.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"project": {
4+
"name": "gl-ngx-configuration"
5+
},
6+
"apps": [
7+
{
8+
"root": "src",
9+
"outDir": "dist",
10+
"assets": [
11+
"assets",
12+
"favicon.ico",
13+
"configuration.json"
14+
],
15+
"index": "index.html",
16+
"main": "main.ts",
17+
"polyfills": "polyfills.ts",
18+
"test": "test.ts",
19+
"tsconfig": "tsconfig.app.json",
20+
"testTsconfig": "tsconfig.spec.json",
21+
"prefix": "app",
22+
"styles": [
23+
"styles.css"
24+
],
25+
"scripts": [],
26+
"environmentSource": "environments/environment.ts",
27+
"environments": {
28+
"dev": "environments/environment.ts",
29+
"prod": "environments/environment.prod.ts"
30+
}
31+
}
32+
],
33+
"e2e": {
34+
"protractor": {
35+
"config": "./protractor.conf.js"
36+
}
37+
},
38+
"lint": [
39+
{
40+
"project": "src/tsconfig.app.json",
41+
"exclude": "**/node_modules/**"
42+
},
43+
{
44+
"project": "src/tsconfig.spec.json",
45+
"exclude": "**/node_modules/**"
46+
},
47+
{
48+
"project": "e2e/tsconfig.e2e.json",
49+
"exclude": "**/node_modules/**"
50+
}
51+
],
52+
"test": {
53+
"karma": {
54+
"config": "./karma.conf.js"
55+
}
56+
},
57+
"defaults": {
58+
"styleExt": "css",
59+
"component": {}
60+
}
61+
}

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Editor configuration, see http://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+
[*.md]
12+
max_line_length = off
13+
trim_trailing_whitespace = false

0 commit comments

Comments
 (0)