-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
41 lines (41 loc) · 987 Bytes
/
tsconfig.json
File metadata and controls
41 lines (41 loc) · 987 Bytes
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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": false,
"noImplicitAny": false,
"preserveConstEnums": true,
"removeComments": false,
"noLib": false,
"sourceMap": true
},
"typings": [],
"files": [
"./public/bower_components/csweb/dist-bower/csComp.d.ts",
"./typings/index.d.ts",
"./Helpers/DateUtils.d.ts",
"./server.ts"
],
"include": [
"public/app/**/*.ts",
"public/translations/**/*.ts",
"CellCoverageSim/**/*.ts",
"CloudSim/**/*.ts",
"CommunicationSim/**/*.ts",
"CriticalObjectSim/**/*.ts",
"ElectricalNetworkSim/**/*.ts",
"FloodSim/**/*.ts",
"HazardousObjectSim/**/*.ts",
"Helpers/**/*.ts",
"RoadSim/**/*.ts",
"SimulationManager/**/*.ts",
"SimulationService/**/*.ts"
],
"exclude": [
"../csWeb/out/**/*.*",
"./node_modules/**/*.ts",
"./node_modules/**/*.d.ts",
"./dist/**/*.*",
"./public/bower_components/**/*.d.ts"
]
}