forked from biocad-cloud/data.ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsbuild.json
50 lines (50 loc) · 1.29 KB
/
tsbuild.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
{
"compileOnSave": false,
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": true,
"lib": [
"dom",
"es5",
"dom.iterable",
"scripthost"
],
"module": "amd",
"noImplicitAny": false,
"outDir": "..\/dist",
"outFile": "..\/..\/build\/linq.js",
"preserveConstEnums": false,
"removeComments": false,
"sourceMap": true,
"target": "es5"
},
"exclude": [
"node_modules"
],
"extends": null,
"files": [
"Data\/BinaryTree\/node.ts",
"Data\/BinaryTree\/binaryTree.ts",
"Data\/BinaryTree\/extensions.ts",
"csv\/Row.ts",
"csv\/Dataframe.ts",
"csv\/Tokenizer.ts",
"Data\/SlideWindow.ts",
"Data\/MetaReader.ts",
"Data\/StackTrace\/StackFrame.ts",
"Data\/StackTrace\/StackTrace.ts",
"Data\/StringBuilder.ts",
"Linq\/DOM\/Document.ts",
"Helpers\/Extensions.ts",
"Linq\/DictionaryMaps.ts",
"Linq\/Group.ts",
"Linq\/Pointer.ts",
"Linq\/List.ts",
"Type.ts",
"Data\/Range.ts",
"Helpers\/Helpers.ts",
"Helpers\/Strings.ts",
"Global.ts"
],
"include": null
}