-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
48 lines (48 loc) · 1.37 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
{
// Blank out files so we don't double-build everything.
// Note that if this isn't blanked out it will cause failures on the second
// compile for settings that are not set in this file, such as
// importint a `.json` file will say `but '--resolveJsonModule' is not used`
// even though resolveJsonModule is set to true in tsconfig.packages.json
// https://www.typescriptlang.org/docs/handbook/project-references.html#overall-structure
"files": [],
// Top-level "solution" config file that just references all the projects
// to be build by `tsc --build`. Note that `--build` is required for
// configs with references.
// https://www.typescriptlang.org/docs/handbook/project-references.html#overall-structure
"references": [
{
"path": "./packages/sitemaps-metrics-lib/"
},
{
"path": "./packages/sitemaps-cdk/"
},
{
"path": "./packages/sitemaps-db-lib/"
},
{
"path": "./packages/sitemaps-models-lib/"
},
{
"path": "./packages/sitemaps-utils-lib/"
},
{
"path": "./packages/sitemaps-wrapper-lib/"
},
{
"path": "./packages/kinesis-sitemap-freshener/"
},
{
"path": "./packages/kinesis-sitemap-writer/"
},
{
"path": "./packages/kinesis-index-writer/"
},
{
"path": "./packages/sitemaps-cli/"
},
{
"path": "./packages/cdk/"
}
]
}