-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtsconfig.json
More file actions
32 lines (32 loc) · 881 Bytes
/
tsconfig.json
File metadata and controls
32 lines (32 loc) · 881 Bytes
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
{
"compilerOptions": {
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"target": "ES2020",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": "./",
"outDir": "./cache",
"paths": {
"@bootstrap/*": ["src/bootstrap/*"],
"@user/*": ["src/user/*"],
"@role/*": ["src/role/*"],
"@medic/*": ["src/medic/*"],
"@driver/*": ["src/driver/*"],
"@history/*": ["src/history/*"],
"@family-refreshtokens/*": ["src/family-refreshtokens/*"],
"@auth/*": ["src/auth/*"],
"@shared/*": ["src/shared/*"],
"@entities/*": ["src/entities/*"]
}
},
"exclude": ["node_modules"],
"include": ["src/**/*.ts"],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}