Skip to content

Commit 0b5dc67

Browse files
authored
Merge pull request #7 from 1maiprogram/sentry
Add Sentry support
2 parents 93200e2 + cc09f65 commit 0b5dc67

8 files changed

Lines changed: 377 additions & 9 deletions

File tree

.editorconfig

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ insert_final_newline = true
1313
trim_trailing_whitespace = true
1414
end_of_line = lf
1515

16+
[package.json]
17+
indent_size = 2
18+
19+
[package-lock.json]
20+
indent_size = 2
21+
1622
[*.ts]
1723
quote_type = double
1824

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,6 @@ __screenshots__/
5151
# System files
5252
.DS_Store
5353
Thumbs.db
54+
55+
# Sentry Config File
56+
.sentryclirc

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"printWidth": 100,
3-
"singleQuote": true,
3+
"singleQuote": false,
44
"overrides": [
55
{
66
"files": "*.html",

angular.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,17 @@
6969
"budgets": [
7070
{
7171
"type": "initial",
72-
"maximumWarning": "500kB",
73-
"maximumError": "1MB"
72+
"maximumWarning": "750kB",
73+
"maximumError": "1.5MB"
7474
},
7575
{
7676
"type": "anyComponentStyle",
7777
"maximumWarning": "4kB",
7878
"maximumError": "8kB"
7979
}
8080
],
81-
"outputHashing": "all"
81+
"outputHashing": "all",
82+
"sourceMap": true
8283
},
8384
"development": {
8485
"optimization": false,

0 commit comments

Comments
 (0)