-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·58 lines (58 loc) · 1.36 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
57
58
{
"compilerOptions": {
"types": ["node", "jest", "express", "multer"],
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "ES2021",
"sourceMap": true,
// "verbatimModuleSyntax": true,
"outDir": "./dist",
"skipDefaultLibCheck": true,
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"noImplicitAny": false,
"strict": true,
"strictBindCallApply": false,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
// "noUnusedLocals": true,
"moduleResolution": "node",
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"pretty": true,
"lib": [
"DOM",
"DOM.Iterable",
"ES2015.Iterable",
"ES2018.AsyncIterable",
"ES2015",
"ES2017",
"ES2018",
"ES2019",
"ES6",
"ESNext"
],
"paths": {
"@shared/*": [
"src/shared/*"
],
"@auth-jwt/*": [
"src/modules/auth-jwt/*"
],
"@auth-session/*": [
"src/modules/auth-session/*"
],
"@certificate/*": [
"src/modules/certificate/*"
],
}
}
}