-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtsconfig.json
66 lines (66 loc) · 2.49 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"compilerOptions": {
"outDir": "./dist/", // path to output directory
//"sourceMap": true, // allow sourcemap support
"strictNullChecks": false, // disable strict null checking because it doesn't like our file parsing code
"module": "esnext", // specify module code generation
//"jsx": "react", // use typescript to transpile jsx to js
"target": "esnext", // specify ECMAScript target version
//"allowJs": true, // allow a partial TypeScript and JavaScript codebase
"moduleResolution": "node"
},
"files": [
"./ts/main.ts",
"./ts/api/editing_api.ts",
"./ts/api/scene_api.ts",
"./ts/api/observable_api.ts",
"./ts/editing/clustering.ts",
"./ts/editing/dijkstra.ts",
"./ts/editing/doUndo.ts",
"./ts/editing/rigid-body_simulation.ts",
"./ts/editing/translation.ts",
"ts/file_handling/file_handling.ts",
"./ts/file_handling/file_getters.ts",
"./ts/file_handling/system_readers.ts",
"./ts/file_handling/aux_readers.ts",
"./ts/file_handling/script_reader.ts",
"./ts/file_handling/tacoxdna_worker.ts",
"./ts/file_handling/read_worker.ts",
"./ts/file_handling/io.ts",
"./ts/file_handling/output_file.ts",
"./ts/file_handling/pdb_lib.ts",
"./ts/file_handling/pdb_worker.ts",
"./ts/file_handling/video.ts",
"./ts/file_handling/stl_exporter.ts",
"./ts/file_handling/GLTFExporter.ts",
"./ts/file_handling/xyz_reader.ts",
"./ts/model/aminoAcid.ts",
"./ts/model/basicElement.ts",
"./ts/model/DNA.ts",
"./ts/model/nucleotide.ts",
"./ts/model/RNA.ts",
"./ts/model/strand.ts",
"./ts/model/system.ts",
"./ts/model/anm.ts",
"./ts/model/force.ts",
"./ts/model/network.ts",
"./ts/model/genericSphere.ts",
"./ts/model/svd.ts",
"./ts/model/leastSquares.ts",
"./ts/model/anm_worker.ts",
"./ts/scene/instancing.ts",
"./ts/scene/mesh_setup.ts",
"./ts/scene/PBC_switchbox.ts",
"./ts/scene/scene_setup.ts",
"./ts/UI/keybindings.ts",
"./ts/UI/base_selector.ts",
"./ts/UI/UI.ts",
"ts/ox_serve/live_relax.ts",
"ts/ox_serve/relax_scenarios.ts",
"ts/file_handling/order_parameter_selector.ts",
"./ts/editing/distance.ts",
"./ts/file_handling/plateDB.ts",
"./ts/editing/selections.ts",
"./ts/api/plugin_api.ts"
]
}