-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
86 lines (86 loc) · 2.77 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"extends" : "./tsconfig-base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"types": []
},
"include" : [
"./src/data-type/**/*",
"./src/buffer.ts",
"./src/operator-type.ts",
"./src/type-util/**/*",
"./src/type-map/**/*",
"./src/type-ref/**/*",
"./src/column-identifier/**/*",
"./src/column-identifier-map/**/*",
"./src/column-identifier-ref/**/*",
"./src/ast/**/*",
"./src/column/**/*",
"./src/column-map/**/*",
"./src/column-ref/**/*",
"./src/expr-column/**/*",
"./src/used-ref/**/*",
"./src/aliased-table/**/*",
"./src/derived-table/**/*",
"./src/derived-table-select-item/**/*",
"./src/key/**/*",
"./src/table/**/*.ts",
"./src/row/**/*.ts",
"./src/partial-row/**/*.ts",
"./src/candidate-key/**/*",
"./src/super-key/**/*",
"./src/primary-key/**/*",
"./src/on-clause/**/*",
"./src/join/**/*",
"./src/join-map/**/*",
"./src/from-clause/**/*",
"./src/expr/**/*",
"./src/expr-select-item/**/*",
"./src/aliased-expr/**/*",
"./src/tuple-util/**/*",
"./src/select-item/**/*",
"./src/select-clause/**/*",
"./src/compound-query/**/*",
"./src/query/**/*",
"./src/query-base/**/*",
"./src/built-in-value-expr/**/*",
"./src/built-in-expr/**/*",
"./src/value-expr/**/*",
"./src/custom-expr/**/*",
"./src/expr-library/**/*",
"./src/where-clause/**/*",
"./src/limit-clause/**/*",
"./src/group-by-clause/**/*",
"./src/sort-direction/**/*",
"./src/order/**/*",
"./src/order-by-clause/**/*",
"./src/constants.ts",
"./src/unified-query/**/*",
"./src/compound-query-order-by-clause/**/*",
"./src/compound-query-clause/**/*",
"./src/error/**/*",
"./src/execution/**/*",
"./src/map-delegate/**/*",
"./src/decimal/**/*",
"./src/equatable-type/**/*",
"./src/comparable-type/**/*",
"./src/fractional-arithmetic-expr/**/*",
"./src/integer-arithmetic-expr/**/*",
"./src/arithmetic-expr/**/*",
"./src/insert/**/*",
"./src/insert-select/**/*",
"./src/update/**/*",
"./src/schema-introspection/**/*",
"./src/schema-validation/**/*",
"./src/design-pattern-log/**/*",
"./src/design-pattern-table-per-type/**/*",
"./src/promise-util/**/*",
"./src/async-queue.ts",
"./src/event/**/*",
"./src/isolation-level.ts",
"./src/transaction-access-mode.ts",
"./src/table-where/**/*",
"./src/index.ts"
]
}