-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
70 lines (70 loc) · 2.65 KB
/
tsconfig.json
File metadata and controls
70 lines (70 loc) · 2.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM"],
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"noEmit": false, // Set to false to emit compiled files
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"typeRoots": ["node_modules/@types", "@types", "./node_modules/@types"],
"baseUrl": "./",
"outDir": "./dist", // Output compiled files to the dist directory
"rootDir": "./",
"paths": {
"@app/*": ["src/app/*"],
"@event-handlers/*": ["src/app/event-handlers/*"],
"@mappers/*": ["src/app/mappers/*"],
"@services/*": ["src/app/services/*"],
"@use-cases/*": ["src/app/use-cases/*"],
"@domain/*": ["src/domain/*"],
"@entities/*": ["src/domain/entities/*"],
"@errors/*": ["src/domain/errors/*"],
"@events/*": ["src/domain/events/*"],
"@repository-interfaces/*": ["src/domain/interfaces/repositories/*"],
"@infrastructure/*": ["src/infrastructure/*"],
"@event-dispatchers/*": ["src/infrastructure/event-dispatchers/*"],
"@logging/*": ["src/infrastructure/logging/*"],
"@notifications/*": ["src/infrastructure/notifications/*"],
"@models/*": ["src/infrastructure/persistence/models/*"],
"@repositories/*": ["src/infrastructure/persistence/repositories/*"],
"@scheduling/*": ["src/infrastructure/scheduling/*"],
"@interfaces/*": ["src/interfaces/*"],
"@dtos/*": ["src/interfaces/dtos/*"],
"@controllers/*": ["src/interfaces/http/controllers/*"],
"@routes/*": ["src/interfaces/http/routes/*"],
"@swagger/*": ["src/infrastructure/swagger/*"],
"@validation-schemas/*": ["src/interfaces/validation-schemas/*"],
"@middleware/*": ["src/interfaces/http/middleware/*"],
"@scripts/*": ["scripts/*"],
"@utils/*": ["src/utils/*"],
"@docs/*": ["docs/*"],
"@tests/*": ["__tests__/*"],
"@nufacturing/*": ["submodules/nufacturing/src/*"],
"@nufulfillment/*": ["submodules/nufulfillment-veracore/src/*"],
"@gallimore-devtools/*": ["submodules/gallimore-dev-tools/src/*"]
}
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"include": ["src/**/*.ts", "src/main.ts", "scripts/*"],
"exclude": [
"node_modules",
"dist",
"**/*.spec.ts",
"**/*.e2e.ts",
"**/__mocks__/**/*"
]
}