-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 1.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"compilerOptions": {
"incremental": true,
"baseUrl": ".",
"outDir": "dist",
"rootDir": "packages",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"experimentalDecorators": true,
"module": "esnext",
"target": "es2022",
"lib": ["es6", "esnext", "es2015", "dom"],
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedParameters": true,
"checkJs": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": true,
"strictNullChecks": true,
"strict": true,
"paths": {
"@accounter-toolkit/green-invoice-graphql": ["packages/green-invoice-graphql/src/index.ts"],
"@accounter-toolkit/hashavshevet-mesh": ["packages/hashavshevet-mesh/src/index.ts"],
"@accounter-toolkit/israeli-vat-scraper": ["packages/israeli-vat-scraper/index.ts"],
"@accounter-toolkit/payper-mesh": ["packages/payper-mesh/src/index.ts"],
"@accounter-toolkit/pcn874-generator": ["packages/pcn874-generator/src/index.ts"]
}
},
"include": ["packages"],
"exclude": [
"**/dist",
"**/temp",
".bob",
"**/node_modules",
"**/generated-types",
".changeset/*.md",
"**/e2e",
"helpers",
".eslintrc.cjs"
]
}