-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsTypesconfig.json
More file actions
37 lines (35 loc) · 1.03 KB
/
tsTypesconfig.json
File metadata and controls
37 lines (35 loc) · 1.03 KB
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
{
"compilerOptions": {
"outFile": "./extraTypes/types.d.ts",
"declaration": true,
"emitDeclarationOnly": true,
"strict": false,
"module": "ES2022",
"target": "ES2022",
"moduleResolution": "Node",
"esModuleInterop": true,
"baseUrl": ".",
"types": [
],
"typeRoots": [
"src/types",
"./node_modules/schedule-manager/dist"
],
"paths": {
"@api/*": ["./src/api/*"],
"@auth/*": ["./src/auth/*"],
"@config/*": ["./src/config/*"],
"@constants/*": ["./src/constants/*"],
"@initialization/*": ["./src/initialization/*"],
"@repositories/*": ["./src/repositories/*"],
"@generated/*": ["./src/generated/*"],
"@utils/*": ["./src/utils/*"],
"@typesDef/*": ["./src/types/*"],
"@jobConsumer/*": ["./src/jobConsumer/*"],
"@notifications/*": ["./src/notifications/*"],
"@external/*": ["./src/external/*"]
},
"skipLibCheck": true
},
"include": ["src/types/**/*.ts", "node_modules/schedule-manager/dist/index.d.ts"]
}