-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.base.json
41 lines (41 loc) · 1.42 KB
/
tsconfig.base.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
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"target": "es2017",
"module": "esnext",
"lib": ["es2017", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"plugins": [
{
"transform": "@nativescript/webpack/dist/transformers/NativeClass",
"type": "raw"
}
],
"paths": {
"@awarns/*": ["packages/*"],
"@awarns/core": ["packages/core/index.d.ts"],
"@awarns/persistence": ["packages/persistence/index.d.ts"],
"@awarns/tracing": ["packages/tracing/index.d.ts"],
"@awarns/battery": ["packages/battery/index.d.ts"],
"@awarns/geolocation": ["packages/geolocation/index.d.ts"],
"@awarns/wifi": ["packages/wifi/index.d.ts"],
"@awarns/ble": ["packages/ble/index.d.ts"],
"@awarns/geofencing": ["packages/geofencing/index.d.ts"],
"@awarns/human-activity": ["packages/human-activity/index.d.ts"],
"@awarns/notifications": ["packages/notifications/index.d.ts"],
"@awarns/phone-sensors": ["packages/phone-sensors/index.d.ts"],
"@awarns/wear-os": ["packages/wear-os/index.d.ts"],
"@awarns/ml-kit": ["packages/ml-kit/index.d.ts"],
"@demo/shared": ["tools/demo/index.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}