We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52f2c1b commit 42694f4Copy full SHA for 42694f4
.eslintrc.json
@@ -88,6 +88,11 @@
88
"group": "builtin",
89
"position": "before"
90
},
91
+ {
92
+ "pattern": "@shared/**",
93
+ "group": "builtin",
94
+ "position": "before"
95
+ },
96
{
97
"pattern": "@services/**",
98
tsconfig.json
@@ -22,6 +22,7 @@
22
"es2020",
23
"dom"
24
],
25
+ "strictPropertyInitialization": false,
26
"paths": {
27
"@components/*": [ "app/core/components/*" ],
28
"@interfaces/*": [ "app/core/interfaces/*" ],
@@ -31,6 +32,7 @@
31
32
"@interceptors/*": [ "app/core/interceptors/*" ],
33
"@guards/*": [ "app/core/guards/*" ],
34
"@constants/*": [ "app/core/constants/*" ],
35
+ "@shared/*": [ "app/shared/*" ],
36
}
37
38
"angularCompilerOptions": {
0 commit comments