-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
40 lines (40 loc) · 1.54 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
{
"include": ["packages/**/*"],
"exclude": ["node_modules", "packages/*/lib"],
"compilerOptions": {
"moduleResolution": "node",
"module": "commonjs",
"target": "esnext",
"lib": ["esnext"],
"baseUrl": ".",
"strict": true,
"skipLibCheck": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"strictNullChecks": true,
"resolveJsonModule": true,
"noUnusedParameters": true,
"strictFunctionTypes": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@ts4ocds/address-details/*": ["packages/address-details/src/*"],
"@ts4ocds/address-details": ["packages/address-details/src/index.ts"],
"@ts4ocds/conversions/*": ["packages/conversions/src/*"],
"@ts4ocds/conversions": ["packages/conversions/src/index.ts"],
"@ts4ocds/core/*": ["packages/core/src/*"],
"@ts4ocds/core": ["packages/core/src/index.ts"],
"@ts4ocds/lots/*": ["packages/lots/src/*"],
"@ts4ocds/lots": ["packages/lots/src/index.ts"],
"@ts4ocds/metrics/*": ["packages/metrics/src/*"],
"@ts4ocds/metrics": ["packages/metrics/src/index.ts"],
"@ts4ocds/options/*": ["packages/options/src/*"],
"@ts4ocds/options": ["packages/options/src/index.ts"],
"@ts4ocds/requirements/*": ["packages/requirements/src/*"],
"@ts4ocds/requirements": ["packages/requirements/src/index.ts"],
"@ts4ocds/utils/*": ["packages/utils/src/*"],
"@ts4ocds/utils": ["packages/utils/src/index.ts"]
}
}
}