-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
52 lines (52 loc) · 1.55 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
50
51
52
{
"compilerOptions": {
"module": "ESNext",
"target": "ES2022",
"lib": [
"ES2022",
"dom",
"dom.iterable",
"esnext",
"WebWorker",
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"noUnusedLocals": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"strictPropertyInitialization": false,
"noImplicitAny": false,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"rootDir": ".",
"outDir": "./dist",
"baseUrl": ".",
"paths": {
// common
"@type/*": ["services/types/*"],
"@schema/*": ["services/types/schemas/*"],
// back-end
"@controller/*": ["services/api/src/controller/*"],
"@database/*": ["services/api/src/database/*"],
"@decorator/*": ["services/api/src/decorator/*"],
"@middleware/*": ["services/api/src/middleware/*"],
"@repository/*": ["services/api/src/repository/*"],
"@service/*": ["services/api/src/service/*"],
// front-end
"@admin/*": ["services/webapp/src/admin/*"],
"@user/*": ["services/webapp/src/user/*"],
"@component/*": ["services/webapp/src/components/*"],
"@control/*": ["services/webapp/src/controls/*"],
"@helper/*": ["services/webapp/src/helpers/*"],
"@hook/*": ["services/webapp/src/hooks/*"],
// contracts
"@contract/*": ["services/bcm/artifacts/contracts/*"]
}
}
}