-
Notifications
You must be signed in to change notification settings - Fork 657
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
53 lines (53 loc) · 2.15 KB
/
tsconfig.build.json
File metadata and controls
53 lines (53 loc) · 2.15 KB
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
{
"extends": "../../tsconfig.build.json",
"include": ["src"],
"references": [
{ "path": "../api/tsconfig.build.json" },
{ "path": "../error/tsconfig.build.json" },
{ "path": "../feature/tsconfig.build.json" },
{ "path": "../feature-flags/tsconfig.build.json" },
{ "path": "../handler/tsconfig.build.json" },
{ "path": "../handler-db/tsconfig.build.json" },
{ "path": "../handler-graphql/tsconfig.build.json" },
{ "path": "../plugins/tsconfig.build.json" },
{ "path": "../utils/tsconfig.build.json" },
{ "path": "../wcp/tsconfig.build.json" },
{ "path": "../db-dynamodb/tsconfig.build.json" },
{ "path": "../handler-aws/tsconfig.build.json" }
],
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"declarationDir": "./dist",
"paths": {
"~/*": ["./src/*"],
"~tests/*": ["./__tests__/*"],
"@webiny/api/*": ["../api/src/*"],
"@webiny/api": ["../api/src"],
"@webiny/error/*": ["../error/src/*"],
"@webiny/error": ["../error/src"],
"@webiny/feature/api": ["../feature/src/api/index.js"],
"@webiny/feature/admin": ["../feature/src/admin/index.js"],
"@webiny/feature/*": ["../feature/src/*"],
"@webiny/feature": ["../feature/src"],
"@webiny/feature-flags/*": ["../feature-flags/src/*"],
"@webiny/feature-flags": ["../feature-flags/src"],
"@webiny/handler/*": ["../handler/src/*"],
"@webiny/handler": ["../handler/src"],
"@webiny/handler-db/*": ["../handler-db/src/*"],
"@webiny/handler-db": ["../handler-db/src"],
"@webiny/handler-graphql/*": ["../handler-graphql/src/*"],
"@webiny/handler-graphql": ["../handler-graphql/src"],
"@webiny/plugins/*": ["../plugins/src/*"],
"@webiny/plugins": ["../plugins/src"],
"@webiny/utils/*": ["../utils/src/*"],
"@webiny/utils": ["../utils/src"],
"@webiny/wcp/*": ["../wcp/src/*"],
"@webiny/wcp": ["../wcp/src"],
"@webiny/db-dynamodb/*": ["../db-dynamodb/src/*"],
"@webiny/db-dynamodb": ["../db-dynamodb/src"],
"@webiny/handler-aws/*": ["../handler-aws/src/*"],
"@webiny/handler-aws": ["../handler-aws/src"]
}
}
}