Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit d1e0c93

Browse files
committedJun 23, 2019
first commit
0 parents  commit d1e0c93

Some content is hidden

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

45 files changed

+12274
-0
lines changed
 

‎.gitignore

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Specifies intentionally untracked files to ignore when using Git
2+
# http://git-scm.com/docs/gitignore
3+
4+
*~
5+
*.sw[mnpcod]
6+
*.log
7+
*.tmp
8+
*.tmp.*
9+
log.txt
10+
*.sublime-project
11+
*.sublime-workspace
12+
.vscode/
13+
npm-debug.log*
14+
15+
.idea/
16+
.ionic/
17+
.sourcemaps/
18+
.sass-cache/
19+
.tmp/
20+
.versions/
21+
coverage/
22+
www/
23+
node_modules/
24+
tmp/
25+
temp/
26+
platforms/
27+
plugins/
28+
plugins/android.json
29+
plugins/ios.json
30+
$RECYCLE.BIN/
31+
32+
.DS_Store
33+
Thumbs.db
34+
UserInterfaceState.xcuserstate

‎angular.json

Lines changed: 200 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,200 @@
1+
{
2+
"$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json",
3+
"version": 1,
4+
"defaultProject": "app",
5+
"newProjectRoot": "projects",
6+
"projects": {
7+
"app": {
8+
"root": "",
9+
"sourceRoot": "src",
10+
"projectType": "application",
11+
"prefix": "app",
12+
"schematics": {},
13+
"architect": {
14+
"build": {
15+
"builder": "@angular-devkit/build-angular:browser",
16+
"options": {
17+
"outputPath": "www",
18+
"index": "src/index.html",
19+
"main": "src/main.ts",
20+
"polyfills": "src/polyfills.ts",
21+
"tsConfig": "src/tsconfig.app.json",
22+
"assets": [
23+
{
24+
"glob": "**/*",
25+
"input": "src/assets",
26+
"output": "assets"
27+
},
28+
{
29+
"glob": "**/*.svg",
30+
"input": "node_modules/ionicons/dist/ionicons/svg",
31+
"output": "./svg"
32+
}
33+
],
34+
"styles": [
35+
{
36+
"input": "src/theme/variables.scss"
37+
},
38+
{
39+
"input": "src/global.scss"
40+
},
41+
{
42+
"input": "src/app/app.scss"
43+
}
44+
],
45+
"scripts": [],
46+
"es5BrowserSupport": true
47+
},
48+
"configurations": {
49+
"production": {
50+
"fileReplacements": [
51+
{
52+
"replace": "src/environments/environment.ts",
53+
"with": "src/environments/environment.prod.ts"
54+
}
55+
],
56+
"optimization": true,
57+
"outputHashing": "all",
58+
"sourceMap": false,
59+
"extractCss": true,
60+
"namedChunks": false,
61+
"aot": true,
62+
"extractLicenses": true,
63+
"vendorChunk": false,
64+
"buildOptimizer": true,
65+
"budgets": [
66+
{
67+
"type": "initial",
68+
"maximumWarning": "2mb",
69+
"maximumError": "5mb"
70+
}
71+
]
72+
},
73+
"ci": {
74+
"progress": false
75+
}
76+
}
77+
},
78+
"serve": {
79+
"builder": "@angular-devkit/build-angular:dev-server",
80+
"options": {
81+
"browserTarget": "app:build"
82+
},
83+
"configurations": {
84+
"production": {
85+
"browserTarget": "app:build:production"
86+
},
87+
"ci": {
88+
"progress": false
89+
}
90+
}
91+
},
92+
"extract-i18n": {
93+
"builder": "@angular-devkit/build-angular:extract-i18n",
94+
"options": {
95+
"browserTarget": "app:build"
96+
}
97+
},
98+
"test": {
99+
"builder": "@angular-devkit/build-angular:karma",
100+
"options": {
101+
"main": "src/test.ts",
102+
"polyfills": "src/polyfills.ts",
103+
"tsConfig": "src/tsconfig.spec.json",
104+
"karmaConfig": "src/karma.conf.js",
105+
"styles": [],
106+
"scripts": [],
107+
"assets": [
108+
{
109+
"glob": "favicon.ico",
110+
"input": "src/",
111+
"output": "/"
112+
},
113+
{
114+
"glob": "**/*",
115+
"input": "src/assets",
116+
"output": "/assets"
117+
}
118+
]
119+
},
120+
"configurations": {
121+
"ci": {
122+
"progress": false,
123+
"watch": false
124+
}
125+
}
126+
},
127+
"lint": {
128+
"builder": "@angular-devkit/build-angular:tslint",
129+
"options": {
130+
"tsConfig": ["src/tsconfig.app.json", "src/tsconfig.spec.json"],
131+
"exclude": ["**/node_modules/**"]
132+
}
133+
},
134+
"ionic-cordova-build": {
135+
"builder": "@ionic/angular-toolkit:cordova-build",
136+
"options": {
137+
"browserTarget": "app:build"
138+
},
139+
"configurations": {
140+
"production": {
141+
"browserTarget": "app:build:production"
142+
}
143+
}
144+
},
145+
"ionic-cordova-serve": {
146+
"builder": "@ionic/angular-toolkit:cordova-serve",
147+
"options": {
148+
"cordovaBuildTarget": "app:ionic-cordova-build",
149+
"devServerTarget": "app:serve"
150+
},
151+
"configurations": {
152+
"production": {
153+
"cordovaBuildTarget": "app:ionic-cordova-build:production",
154+
"devServerTarget": "app:serve:production"
155+
}
156+
}
157+
}
158+
}
159+
},
160+
"app-e2e": {
161+
"root": "e2e/",
162+
"projectType": "application",
163+
"architect": {
164+
"e2e": {
165+
"builder": "@angular-devkit/build-angular:protractor",
166+
"options": {
167+
"protractorConfig": "e2e/protractor.conf.js",
168+
"devServerTarget": "app:serve"
169+
},
170+
"configurations": {
171+
"production": {
172+
"devServerTarget": "app:serve:production"
173+
},
174+
"ci": {
175+
"devServerTarget": "app:serve:ci"
176+
}
177+
}
178+
},
179+
"lint": {
180+
"builder": "@angular-devkit/build-angular:tslint",
181+
"options": {
182+
"tsConfig": "e2e/tsconfig.e2e.json",
183+
"exclude": ["**/node_modules/**"]
184+
}
185+
}
186+
}
187+
}
188+
},
189+
"cli": {
190+
"defaultCollection": "@ionic/angular-toolkit"
191+
},
192+
"schematics": {
193+
"@ionic/angular-toolkit:component": {
194+
"styleext": "scss"
195+
},
196+
"@ionic/angular-toolkit:page": {
197+
"styleext": "scss"
198+
}
199+
}
200+
}

0 commit comments

Comments
 (0)
Please sign in to comment.