-
-
Notifications
You must be signed in to change notification settings - Fork 110
/
tsconfig.base.json
69 lines (69 loc) · 3.47 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
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
{
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"target": "ES2020",
"module": "ESNext",
"lib": ["ESNext", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"plugins": [
{
"transform": "@nativescript/webpack/dist/transformers/NativeClass",
"type": "raw"
}
],
"paths": {
"@demo/shared": ["tools/demo/index.ts"],
"@nativescript/*": ["packages/*"],
"@nativescript/animated-circle": ["packages/animated-circle/index.d.ts"],
"@nativescript/animated-circle/angular": ["packages/animated-circle/angular/index.ts"],
"@nativescript/appavailability": ["packages/appavailability/index.d.ts"],
"@nativescript/apple-sign-in": ["packages/apple-sign-in/index.d.ts"],
"@nativescript/auto-fit-text": ["packages/auto-fit-text/index.d.ts"],
"@nativescript/auto-fit-text/angular": ["packages/auto-fit-text/angular/index.ts"],
"@nativescript/background-http": ["packages/background-http/index.d.ts"],
"@nativescript/biometrics": ["packages/biometrics/index.d.ts"],
"@nativescript/brightness": ["packages/brightness/index.d.ts"],
"@nativescript/camera": ["packages/camera/index.d.ts"],
"@nativescript/contacts": ["packages/contacts/index.d.ts"],
"@nativescript/datetimepicker": ["packages/datetimepicker/index.d.ts"],
"@nativescript/datetimepicker/angular": ["packages/datetimepicker/angular/index.ts"],
"@nativescript/debug-android": ["packages/debug-android/index.d.ts"],
"@nativescript/debug-ios": ["packages/debug-ios/index.d.ts"],
"@nativescript/detox": ["packages/detox/index.d.ts"],
"@nativescript/directions": ["packages/directions/index.d.ts"],
"@nativescript/email": ["packages/email/index.d.ts"],
"@nativescript/facebook": ["packages/facebook/index.d.ts"],
"@nativescript/fingerprint-auth": ["packages/fingerprint-auth/index.d.ts"],
"@nativescript/geolocation": ["packages/geolocation/index.d.ts"],
"@nativescript/google-maps": ["packages/google-maps/index.d.ts"],
"@nativescript/google-maps/angular": ["packages/google-maps/angular/index.ts"],
"@nativescript/google-signin": ["packages/google-signin/index.d.ts"],
"@nativescript/haptics": ["packages/haptics/index.d.ts"],
"@nativescript/imagepicker": ["packages/imagepicker/index.d.ts"],
"@nativescript/ios-security": ["packages/ios-security/index.d.ts"],
"@nativescript/iqkeyboardmanager": ["packages/iqkeyboardmanager/index.d.ts"],
"@nativescript/keyboard-toolbar": ["packages/keyboard-toolbar/index.d.ts"],
"@nativescript/local-notifications": ["packages/local-notifications/index.d.ts"],
"@nativescript/localize": ["packages/localize/index.d.ts"],
"@nativescript/localize/angular": ["packages/localize/angular/index.ts"],
"@nativescript/pdf": ["packages/pdf/index.d.ts"],
"@nativescript/picker": ["packages/picker/index.d.ts"],
"@nativescript/picker/angular": ["packages/picker/angular/index.ts"],
"@nativescript/secure-storage": ["packages/secure-storage/index.d.ts"],
"@nativescript/shared-notification-delegate": ["packages/shared-notification-delegate/index.d.ts"],
"@nativescript/social-share": ["packages/social-share/index.d.ts"],
"@nativescript/theme-switcher": ["packages/theme-switcher/index.ts"],
"@nativescript/twitter": ["packages/twitter/index.d.ts"],
"@nativescript/zip": ["packages/zip/index.d.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}