-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
31 lines (29 loc) · 983 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
28
29
30
31
{
"compilerOptions": {
"target": "es2015",
"module": "es2015",
"sourceMap": true,
"outDir": "out",
"noImplicitAny": true,
// "strict": true, // TODO fix
"strictNullChecks": true,
"allowJs": true,
"moduleResolution": "node",
"esModuleInterop": true,
},
"modules": ["src/collections.ts",
"src/diagrams.ts",
"src/geometry.ts",
"src/dataModels.ts",
"examples/statecharts/statecharts.ts",
"examples/functioncharts/functioncharts.ts"],
"files": ["test/collections.test.ts",
"test/dataModels.test.ts",
"test/statecharts.test.ts",
"test/functioncharts.test.ts",
"examples/statecharts/statechart_example.ts",
"examples/functioncharts/functionchart_example.ts",
"examples/functioncharts/execution.ts",
"third_party/canvas2svg/canvas2svg.js",
"third_party/FileSaver.min.js"],
}