-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
42 lines (42 loc) · 924 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
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"compilerOptions": {
"target": "ES2022",
"lib": [
"ES2022",
"DOM"
],
"module": "ES2022",
"rootDirs": ["./src", "./test"],
"moduleResolution": "Node16",
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"verbatimModuleSyntax": true,
"outDir": "./lib",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"allowUnreachableCode": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"paths": {
"exceptionally": ["./src/index.ts"],
"exceptionally/assert": ["./src/assert/index.ts"],
"exceptionally/utils": ["./src/utils/index.ts"]
}
},
"include": [
"src/**/*.ts",
"test/**/*.ts",
"examples/**/*.ts"
],
"exclude": [
"node_modules",
"lib"
]
}