-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
34 lines (33 loc) · 927 Bytes
/
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
// TypeScript Project Configuration
{
"watchOptions": {
"excludeDirectories": [
"**/.git", // Git
"**/.yarn", // Yarn
"**/.vscode", // VS Code
"**/.vscode-test-web", // VS Code Web Test
"**/dist", // Distributed build files
"**/out", // Output build files
"**/scratch", // Scratch files
"**/node_modules" // Node modules
]
},
// The root project has no sources of its own. By setting `files` to an empty
// list, TS won't automatically include all sources below root (the default).
"files": [],
"references": [
// Note that references are in the order we want them to be built.
{ "path": "./path-ts" },
{ "path": "./core" },
{ "path": "./spatial" },
{ "path": "./tiger" },
{ "path": "./fcc" },
{ "path": "./mailwoman" },
{ "path": "./cartographer" },
{ "path": "./sdk" },
{ "path": "./sync" },
{ "path": "./pelias" },
{ "path": "./api" },
{ "path": "./vaxis" }
]
}