forked from motifmarkets/motif-core
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
60 lines (57 loc) · 1.82 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
/**
* @license Motif
* (c) 2021 Paritech Wealth Technology
* License: motionite.trade/license/motif
*/
{
"compileOnSave": false,
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"downlevelIteration": true,
"resolveJsonModule": true,
"importHelpers": true,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitOverride": true,
"strictBindCallApply": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"strictFunctionTypes": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"noPropertyAccessFromIndexSignature": true,
"strictPropertyInitialization": false,
"noUnusedLocals": false,
"baseUrl": ".",
"outDir": "dist",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"declarationDir": "./lib",
"moduleResolution": "node",
"lib": [
"dom"
],
"rootDir": "src",
"paths": {
// "res-internal-api": ["./src/code/res/internal-api"],
// "sys-internal-api": ["./src/code/sys/internal-api"],
// "adi-internal-api": ["./src/code/adi/internal-api"],
// "services-internal-api": ["./src/code/services/internal-api"],
// "grid-revgrid-types": ["./src/code/grid/grid-revgrid-types"],
// "grid-layout-internal-api": ["./src/code/grid/layout/internal-api"],
// "grid-record-internal-api": ["./src/code/grid/record/internal-api"],
// "grid-table-internal-api": ["./src/code/grid/table/internal-api"],
// make sure we do not import the CommonJS decimal.js-light
// "decimal.js-light": ["node_modules/decimal.js-light.mjs"]
},
// "traceResolution": true, // can use this to debug paths
},
"include": [],
"references": [
{ "path": "./src/code/tsconfig.json" }
]
}