Skip to content

Commit 42694f4

Browse files
committed
🌱 add shared path
1 parent 52f2c1b commit 42694f4

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.eslintrc.json

+5
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,11 @@
8888
"group": "builtin",
8989
"position": "before"
9090
},
91+
{
92+
"pattern": "@shared/**",
93+
"group": "builtin",
94+
"position": "before"
95+
},
9196
{
9297
"pattern": "@services/**",
9398
"group": "builtin",

tsconfig.json

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"es2020",
2323
"dom"
2424
],
25+
"strictPropertyInitialization": false,
2526
"paths": {
2627
"@components/*": [ "app/core/components/*" ],
2728
"@interfaces/*": [ "app/core/interfaces/*" ],
@@ -31,6 +32,7 @@
3132
"@interceptors/*": [ "app/core/interceptors/*" ],
3233
"@guards/*": [ "app/core/guards/*" ],
3334
"@constants/*": [ "app/core/constants/*" ],
35+
"@shared/*": [ "app/shared/*" ],
3436
}
3537
},
3638
"angularCompilerOptions": {

0 commit comments

Comments
 (0)