generated from phucvinh57/fastify-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
49 lines (49 loc) · 1.61 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
{
"compilerOptions": {
"baseUrl": ".",
"sourceRoot": "src",
"outDir": "dist",
"module": "CommonJS",
"target": "ESNext",
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"moduleResolution": "node",
"isolatedModules": false,
"suppressImplicitAnyIndexErrors": false,
"noImplicitAny": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"newLine": "LF",
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"lib": ["ESNext", "dom", "ESNext.AsyncIterable"],
"typeRoots": ["./node_modules/@types"],
"paths": {
"@handlers": ["src/handlers"],
"@constants": ["src/constants"],
"@services": ["src/services"],
"@dtos/in": ["src/dtos/in"],
"@dtos/out": ["src/dtos/out"],
"@dtos/common": ["src/dtos/common.dto"],
"@configs": ["src/configs"],
"@configs/*": ["src/configs/*"],
"@repositories": ["src/repositories"],
"@utils": ["src/utils"],
"@hooks": ["src/hooks"],
"@routes": ["src/routes"],
"@interfaces": ["src/interfaces"],
"#package.json": ["./package.json"]
}
},
"include": ["src", "**/*.js", "**/*.ts"],
"exclude": ["node_modules", "dist", "coverage"],
"linterOptions": {
"exclude": []
}
}