forked from graycoreio/daffodil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
79 lines (79 loc) · 1.63 KB
/
tsconfig.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
68
69
70
71
72
73
74
75
76
77
78
79
{
"compileOnSave": false,
"compilerOptions": {
"module": "esnext",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom",
"esnext.asynciterable"
],
"baseUrl": ".",
"paths": {
"@daffodil/core": [
"dist/core"
],
"@daffodil/cart": [
"dist/cart"
],
"@daffodil/cart/testing": [
"dist/cart/testing"
],
"@daffodil/core/testing": [
"dist/core/testing"
],
"@daffodil/navigation": [
"dist/navigation"
],
"@daffodil/navigation/testing": [
"dist/navigation/testing"
],
"@daffodil/product": [
"dist/product"
],
"@daffodil/product/testing": [
"dist/product/testing"
],
"@daffodil/checkout": [
"dist/checkout"
],
"@daffodil/checkout/testing": [
"dist/checkout/testing"
],
"@daffodil/driver": [
"dist/driver"
],
"@daffodil/design": [
"dist/design"
],
"@daffodil/branding": [
"dist/branding"
],
"@daffodil/category": [
"dist/category"
],
"@daffodil/category/testing": [
"dist/category/testing"
],
"@daffodil/newsletter": [
"dist/newsletter"
],
"@daffodil/newsletter/testing": [
"dist/newsletter/testing"
]
}
},
"exclude": [
"node_modules",
"tmp"
]
}