forked from akvelon/PowerBI-Hierarchy-Chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
27 lines (27 loc) · 793 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
27
{
"compilerOptions": {
"allowJs": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES5",
"sourceMap": true,
"out": "./.tmp/build/visual.js"
},
"files": [
".api/v1.7.0/PowerBI-visuals.d.ts",
"node_modules/powerbi-visuals-utils-dataviewutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-typeutils/lib/index.d.ts",
"node_modules/powerbi-visuals-utils-colorutils/lib/index.d.ts",
"node_modules/@types/d3/index.d.ts",
"src/settings.ts",
"src/hierarchyChart.ts",
"src/drawControlPanel.ts",
"src/drawElements.ts",
"src/calculationsForDrawing.ts",
"src/workWithTeams.ts",
"src/workWithWarning.ts",
"src/drawWarning.ts",
"src/dataInterfaces.ts",
"src/dataStorage.ts"
]
}