forked from markosko/nativescript-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
26 lines (25 loc) · 815 Bytes
/
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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"removeComments": true,
"experimentalDecorators": true,
"noEmitHelpers": true,
"declaration": true
},
"files": [
"node_modules/tns-core-modules/tns-core-modules.d.ts",
"node_modules/tns-platform-declarations/tns-core-modules/android17.d.ts",
"node_modules/tns-platform-declarations/tns-core-modules/ios.d.ts",
"node_modules/tns-platform-declarations/tns-core-modules/org.nativescript.widgets.d.ts",
"nativescript-charts.common.ts",
"nativescript-charts.android.ts",
"nativescript-charts.ios.ts",
"line-chart/line-chart.android.ts"
],
"compileOnSave": true,
"include":[
"components/**/*",
"line-chart/**/*"
]
}