-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
32 lines (32 loc) · 946 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
{
"ts-node": {
"require": ["tsconfig-paths/register"]
},
"compilerOptions": {
"lib": ["es5", "es6", "ES2021.String", "DOM"],
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"esModuleInterop": true,
"sourceMap": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"rootDir": ".",
"outDir": "./build",
"skipLibCheck": true,
"baseUrl": ".",
"paths": {
"@entity": ["./src/entity/index.ts"],
"@interfaces": ["./src/interfaces/index.ts"],
"@middlewares/*": ["./src/middlewares/*"],
"@routes": ["./src/routes/index.ts"],
"@controllers/*": ["./src/controllers/*"],
"@utils": ["./src/utils/index.ts"],
"@services": ["./src/services/index.ts"],
"@config": ["./src/bootstrap/config.ts"],
"@subscribers": ["./src/subscribers/index.ts"]
}
}
}