-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtsconfig.base.json
44 lines (44 loc) · 1.71 KB
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"typeRoots": ["node_modules/@types"],
"target": "es2015",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"resolveJsonModule": true,
"baseUrl": ".",
"esModuleInterop": false,
"downlevelIteration": true,
"strictPropertyInitialization": false,
"strictNullChecks": false,
"paths": {
"@iverify/api-interfaces": ["libs/api-interfaces/src/index.ts"],
"@iverify/meedan-check-client": ["libs/meedan-check-client/src/index.ts"],
"@iverify/wp-client": ["libs/wp-client/src/index.ts"],
"@iverify/crowdtangle-client": ["libs/crowdtangle-client/src/index.ts"],
"@iverify/ml-service-client": ["libs/ml-service-client/src/index.ts"],
"@iverify/iverify-common": ["libs/iverify-common/src/index.ts"],
"@iverify/*": ["libs/*"],
"@iverify/api-client": ["libs/api-client/src/index.ts"],
"@iverify/email": ["libs/email/src/index.ts"],
"@iverify/perspective-client": ["libs/perspective-client/src/index.ts"],
"@iverify/shared": ["libs/shared/src/index.ts"],
"@iverify/common": ["libs/common/src/index.ts"],
"@iverify/unitedwave-client": ["libs/unitedwave-client/src/index.ts"],
"@iverify/libs/s3": ["libs/libs/s3/src/index.ts"],
"@iverify/s3": ["libs/s3/src/index.ts"],
"@iverify/libs/auth": ["libs/libs/auth/src/index.ts"],
"@iverify/auth": ["libs/auth/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}