generated from UK-Export-Finance/nestjs-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
55 lines (55 loc) · 1.45 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
{
"extends": "./node_modules/@tsconfig/node21/tsconfig.json",
"compilerOptions": {
"module": "commonjs",
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false,
"resolveJsonModule": true,
"esModuleInterop": true,
"moduleResolution": "node",
"rootDirs": ["src"],
"lib": ["ES2022"],
"target": "ES2022",
"composite": true,
"declaration": true,
"declarationMap": true,
"types": ["jest", "node", "@types/jest"],
"sourceMap": true,
"paths": {
"@ukef/*": ["src/*"],
"@ukef/constants/*": ["src/constants/*"],
"@ukef/config/*": ["src/config/*"],
"@ukef/database/*": ["src/modules/database/*"],
"@ukef/helpers/*": ["src/helpers/*"],
"@ukef/helper-modules/*": ["src/helper-modules/*"],
"@ukef/modules/*": ["src/modules/*"],
"@ukef/auth/*": ["src/modules/auth/*"],
"@ukef/swagger/*": ["src/swagger"],
"@ukef-test/*": ["test/*"],
}
},
"include": [
"src",
"test",
"jest.config.ts",
"src/**/*.json",
],
"exclude": [
"node_modules",
"dist",
"*coverage",
"logs",
"scripts",
]
}