-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.base.json
57 lines (57 loc) · 1.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"allowJs": false,
"sourceMap": true,
"declaration": false,
"esModuleInterop": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"importHelpers": true,
"target": "esnext",
"module": "node16",
"moduleResolution": "node16",
"lib": [
"esnext",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noPropertyAccessFromIndexSignature": false,
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"baseUrl": ".",
"paths": {
"@secretarium/connector": [
"libs/connector/src/index.ts"
],
"@secretarium/crypto": [
"libs/crypto/src/index.ts"
],
"@secretarium/instrumentation": [
"libs/instrumentation/src/index.ts"
],
"@secretarium/pda-api": [
"libs/pda-api/src/index.ts"
]
}
},
"include": [
"*.ts",
"package.json"
],
"exclude": [
"node_modules",
"tmp"
]
}