-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
53 lines (53 loc) · 1.21 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
48
49
50
51
52
53
{
"compilerOptions": {
"noEmitOnError": false,
"noImplicitAny": true,
"rootDir": "src/",
"target": "ES6",
"module": "commonjs",
"sourceMap": true
},
"filesGlob": [
"src/**/*{.ts, .d.ts}",
"!src/typings/*.d.ts",
"test/**/*.ts",
"typings/index.d.ts",
"!typings/browser/**",
"!src/model/eddiflow/**",
"!typings/main",
"!typings/main.d.ts",
"!src/main/webapp/**",
"!node_modules/**"
],
"atom": {
"rewriteTsconfig": true
},
"files": [
"src/controller/Controller.ts",
"src/logging/Session.ts",
"src/main.ts",
"src/model/Chart.ts",
"src/model/Events.ts",
"src/model/Export.ts",
"src/model/Expr.ts",
"src/model/Import.ts",
"src/model/import/Spring.ts",
"src/model/Model.ts",
"src/model/Physics.ts",
"src/model/PhysicsExpr.ts",
"src/model/Ranking.ts",
"src/model/Shapes.ts",
"src/model/Simulation.ts",
"src/model/Synthesis.ts",
"src/model/tracing/Actions.ts",
"src/model/Variable.ts",
"src/util/HTTP.ts",
"src/util/Poset.ts",
"src/util/Timer.ts",
"src/util/Util.ts",
"src/view/Chart.ts",
"src/view/Shapes.ts",
"src/view/View.ts",
"typings/index.d.ts"
]
}