forked from alexziskind1/nativescript-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·47 lines (47 loc) · 1.19 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"noImplicitAny": false,
"removeComments": true,
"experimentalDecorators": true,
"noLib": false,
"preserveConstEnums": true,
"declaration": false,
"noEmitHelpers": true,
"suppressImplicitAnyIndexErrors": true,
"lib": [
"es6",
"dom"
],
"baseUrl": ".",
"paths": {
"*": [
"./node_modules/tns-core-modules/*",
"./node_modules/*"
]
}
},
"files": [
"auth-helper.ts",
"auth-helper-facebook.ts",
"auth-helper-google.ts",
"auth-helper-office365.ts",
"auth-helper-uaa.ts",
"auth-helper-linkedin.ts",
"index.ts",
"tns-oauth.ts",
"tns-oauth-page-provider.ts",
"tns-oauth-token-cache.ts",
"tns-oauth-utils.ts",
"tns-oauth-webview-helper.ios.ts",
"tns-oauth-webview-helper.android.ts",
"./typings/querystring.d.ts",
"./typings/url.d.ts"
],
"compileOnSave": false,
"exclude": [
"node_modules",
"platforms"
]
}