-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.tns.json
58 lines (58 loc) · 1.18 KB
/
tsconfig.tns.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
{
"extends": "./tsconfig-base.json",
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noEmitHelpers": false,
"noEmitOnError": true,
"skipLibCheck": true,
"module": "ESNext",
"target": "es2015",
"lib": [
"es2018",
"es2017",
"dom",
"es6"
],
"typeRoots": ["typings"],
"baseUrl": ".",
"paths": {
"@app/*": [
"src/app/*.android.ts",
"src/app/*.ios.ts",
"src/app/*.tns.ts",
"src/app/*.ts"
],
"@classes/*": [
"classes/*.android.ts",
"classes/*.ios.ts",
"classes/*.tns.ts",
"classes/*.ts"
],
"@src/*": [
"src/*.android.ts",
"src/*.ios.ts",
"src/*.tns.ts",
"src/*.ts"
],
"@modules/*": [
"src/modules/*.android.ts",
"src/modules/*.ios.ts",
"src/modules/*.tns.ts",
"src/modules/*.ts"
],
"@typings/*": ["typings/*", "typings/index.d"]
}
},
"exclude": [
"node_modules",
"platforms",
"e2e",
"_transpiled",
"_templates",
"migrations",
"api",
]
}