Skip to content

Commit 0a86c9e

Browse files
committed
Initial commit
1 parent 7e19459 commit 0a86c9e

Some content is hidden

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

64 files changed

+1893
-818
lines changed

.prettierignore

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.eslintrc
2+
bitbucket-pipelines.yml
3+
coverage/
4+
dist/
5+
node_modules/
6+
public/mockServiceWorker.js
7+
public/cognito_client_id.json
8+
public/cognito_user_pool.json
9+
public/sentrydsn.json
10+
public/version.json

.prettierrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"bracketSpacing": true,
3+
"endOfLine": "lf",
4+
"printWidth": 120,
5+
"semi": true,
6+
"tabWidth": 2,
7+
"tailwindFunctions": ["clsx"],
8+
"trailingComma": "none",
9+
"plugins": ["prettier-plugin-tailwindcss"]
10+
}

angular.json

+17-15
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
"projects": {
66
"angular-center": {
77
"projectType": "application",
8-
"schematics": {},
8+
"schematics": {
9+
"@schematics/angular:component": {
10+
"skipTests": true,
11+
"style": "none"
12+
}
13+
},
914
"root": "",
1015
"sourceRoot": "src",
1116
"prefix": "app",
@@ -16,19 +21,15 @@
1621
"outputPath": "dist/angular-center",
1722
"index": "src/index.html",
1823
"browser": "src/main.ts",
19-
"polyfills": [
20-
"zone.js"
21-
],
24+
"polyfills": ["zone.js"],
2225
"tsConfig": "tsconfig.app.json",
2326
"assets": [
2427
{
2528
"glob": "**/*",
2629
"input": "public"
2730
}
2831
],
29-
"styles": [
30-
"src/styles.css"
31-
],
32+
"styles": ["src/styles.css"],
3233
"scripts": []
3334
},
3435
"configurations": {
@@ -50,7 +51,13 @@
5051
"development": {
5152
"optimization": false,
5253
"extractLicenses": false,
53-
"sourceMap": true
54+
"sourceMap": true,
55+
"fileReplacements": [
56+
{
57+
"replace": "src/environments/environment.ts",
58+
"with": "src/environments/environment.development.ts"
59+
}
60+
]
5461
}
5562
},
5663
"defaultConfiguration": "production"
@@ -73,20 +80,15 @@
7380
"test": {
7481
"builder": "@angular-devkit/build-angular:karma",
7582
"options": {
76-
"polyfills": [
77-
"zone.js",
78-
"zone.js/testing"
79-
],
83+
"polyfills": ["zone.js", "zone.js/testing"],
8084
"tsConfig": "tsconfig.spec.json",
8185
"assets": [
8286
{
8387
"glob": "**/*",
8488
"input": "public"
8589
}
8690
],
87-
"styles": [
88-
"src/styles.css"
89-
],
91+
"styles": ["src/styles.css"],
9092
"scripts": []
9193
}
9294
}

0 commit comments

Comments
 (0)