-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.22 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es2015",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2020",
"dom"
],
"paths": {
"@accounts/*": ["src/app/accounts/*"],
"@accounts-data-access": ["src/app/accounts-data-access"],
"@api": ["src/app/api"],
"@auth": ["src/app/auth"],
"@budget/*": ["src/app/budget/*"],
"@budget-data-access": ["src/app/budget-data-access"],
"@categories/*": ["src/app/categories/*"],
"@categories-data-access": ["src/app/categories-data-access"],
"@contractors/*": ["src/app/contractors/*"],
"@contractors-data-access": ["src/app/contractors-data-access"],
"@dashboard/*": ["src/app/dashboard/*"],
"@dashboard-data-access": ["src/app/dashboard-data-access"],
"@data-access": ["src/app/data-access"],
"@shared/*": ["src/app/shared/*"],
"@transactions/*": ["src/app/transactions/*"],
"@transactions-data-access": ["src/app/transactions-data-access"]
}
}
}