Skip to content

Commit 0fdf847

Browse files
initial commit
0 parents  commit 0fdf847

File tree

9 files changed

+6468
-0
lines changed

9 files changed

+6468
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.angular
2+
dist
3+
node_modules
4+
.env

angular.json

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"cli": {
4+
"analytics": "1e1de97b-a744-405a-8b5a-0397bb3d01ce"
5+
},
6+
"newProjectRoot": "projects",
7+
"projects": {
8+
"demo": {
9+
"architect": {
10+
"build": {
11+
"builder": "@angular/build:application",
12+
"configurations": {
13+
"development": {
14+
"extractLicenses": false,
15+
"namedChunks": true,
16+
"optimization": false,
17+
"sourceMap": true
18+
},
19+
"production": {
20+
"aot": true,
21+
"extractLicenses": true,
22+
"namedChunks": false,
23+
"optimization": true,
24+
"outputHashing": "all",
25+
"sourceMap": false
26+
}
27+
},
28+
"options": {
29+
"assets": [],
30+
"index": "src/index.html",
31+
"browser": "src/main.ts",
32+
"outputPath": "dist/demo",
33+
"polyfills": ["zone.js"],
34+
"scripts": [],
35+
"styles": ["src/global_styles.css"],
36+
"tsConfig": "tsconfig.app.json"
37+
}
38+
},
39+
"serve": {
40+
"builder": "@angular/build:dev-server",
41+
"configurations": {
42+
"development": {
43+
"buildTarget": "demo:build:development"
44+
},
45+
"production": {
46+
"buildTarget": "demo:build:production"
47+
}
48+
},
49+
"defaultConfiguration": "development"
50+
}
51+
},
52+
"prefix": "app",
53+
"projectType": "application",
54+
"root": "",
55+
"schematics": {},
56+
"sourceRoot": "src"
57+
}
58+
},
59+
"version": 1
60+
}

0 commit comments

Comments
 (0)