-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (58 loc) · 2.58 KB
/
tsconfig.json
File metadata and controls
58 lines (58 loc) · 2.58 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"target": "es2015",
"module": "esnext",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"paths": {
"@app/api/*": ["apps/api/src/app/*"],
"@slackmap/core": ["libs/core/src/index.ts"],
"@slackmap/gis": ["libs/gis/src/index.ts"],
"@slackmap/ui/api": ["libs/ui/api/src/index.ts"],
"@slackmap/ui/config": ["libs/ui/config/src/index.ts"],
"@slackmap/ui/core": ["libs/ui/core/src/index.ts"],
"@slackmap/ui/pwa": ["libs/ui/pwa/src/index.ts"],
"@slackmap/ui/map": ["libs/ui/map/src/index.ts"],
"@slackmap/api/common": ["libs/api/common/src/index.ts"],
"@slackmap/api/clusters": ["libs/api/clusters/src/index.ts"],
"@slackmap/api/clusters/dto": ["libs/api/clusters/src/dto.ts"],
"@slackmap/api/auth": ["libs/api/auth/src/index.ts"],
"@slackmap/api/auth/dto": ["libs/api/auth/src/dto.ts"],
"@slackmap/api/auth/testing": ["libs/api/auth/src/testing/index.ts"],
"@slackmap/api/facebook": ["libs/api/facebook/src/index.ts"],
"@slackmap/api/facebook/dto": ["libs/api/facebook/src/dto.ts"],
"@slackmap/api/facebook/testing": [
"libs/api/facebook/src/testing/index.ts"
],
"@slackmap/api/config": ["libs/api/config/src/index.ts"],
"@slackmap/api/config/dto": ["libs/api/config/src/dto.ts"],
"@slackmap/api/db": ["libs/api/db/src/index.ts"],
"@slackmap/api/db/testing": ["libs/api/db/src/testing/index.ts"],
"@slackmap/ui/common/loader": ["libs/ui/common/loader/src/index.ts"],
"@slackmap/ui/common/errors": ["libs/ui/common/errors/src/index.ts"],
"@slackmap/ui/add": ["libs/ui/add/src/index.ts"],
"@slackmap/ui/auth": ["libs/ui/auth/src/index.ts"],
"@slackmap/ui/common/dispatcher": [
"libs/ui/common/dispatcher/src/index.ts"
],
"@slackmap/ui/common/utils": ["libs/ui/common/utils/src/index.ts"],
"@slackmap/api/spot/dto": ["libs/api/spot/dto/src/index.ts"],
"@slackmap/api/spot/domain": ["libs/api/spot/domain/src/index.ts"],
"@slackmap/api/spot/data": ["libs/api/spot/data/src/index.ts"],
"@slackmap/api/spot/testing": ["libs/api/spot/testing/src/index.ts"]
}
},
"exclude": ["node_modules", "tmp", "tools/schematics/**/files/**"]
}