forked from segmentio/action-destinations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 996 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
{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"lib": ["es2020"],
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"resolveJsonModule": true,
"strict": true,
"sourceMap": true,
"removeComments": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictPropertyInitialization": false,
"experimentalDecorators": true,
"skipLibCheck": true
},
"exclude": ["dist", "templates"],
"references": [
{ "path": "./packages/ajv-human-errors/tsconfig.build.json" },
{ "path": "./packages/browser-destinations/tsconfig.build.json" },
{ "path": "./packages/browser-destination-runtime/tsconfig.build.json" },
{ "path": "./packages/core/tsconfig.build.json" },
{ "path": "./packages/destination-actions/tsconfig.build.json" },
{ "path": "./packages/destination-subscriptions/tsconfig.build.json" },
{ "path": "./packages/actions-shared/tsconfig.build.json" }
]
}