-
Notifications
You must be signed in to change notification settings - Fork 0
/
mosaic.jsconfig.json
67 lines (67 loc) · 2.13 KB
/
mosaic.jsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"baseUrl": "./",
"jsx": "react",
"paths": {
"SourceStyle/*": [
"node_modules/@scandipwa/scandipwa/src/style/*"
],
"SourceComponent/*": [
"node_modules/@scandipwa/scandipwa/src/component/*"
],
"SourceRoute/*": [
"node_modules/@scandipwa/scandipwa/src/route/*"
],
"SourceStore/*": [
"node_modules/@scandipwa/scandipwa/src/store/*"
],
"SourceUtil/*": [
"node_modules/@scandipwa/scandipwa/src/util/*"
],
"SourceQuery/*": [
"node_modules/@scandipwa/scandipwa/src/query/*"
],
"SourceType/*": [
"node_modules/@scandipwa/scandipwa/src/type/*"
],
"SourcePages/*": [
"node_modules/@scandipwa/scandipwa/src/pages/*"
],
"Source/*": [
"node_modules/@scandipwa/scandipwa/src/*"
],
"Style/*": [
"node_modules/@scandipwa/scandipwa/src/style/*",
"src/style/*"
],
"Component/*": [
"node_modules/@scandipwa/scandipwa/src/component/*",
"src/component/*"
],
"Route/*": [
"node_modules/@scandipwa/scandipwa/src/route/*",
"src/route/*"
],
"Store/*": [
"node_modules/@scandipwa/scandipwa/src/store/*",
"src/store/*"
],
"Util/*": [
"node_modules/@scandipwa/scandipwa/src/util/*",
"src/util/*"
],
"Query/*": [
"node_modules/@scandipwa/scandipwa/src/query/*",
"src/query/*"
],
"Type/*": [
"node_modules/@scandipwa/scandipwa/src/type/*",
"src/type/*"
],
"Pages/*": [
"node_modules/@scandipwa/scandipwa/src/pages/*",
"src/pages/*"
]
}
}
}