-
Notifications
You must be signed in to change notification settings - Fork 8
/
tsconfig.json
58 lines (54 loc) · 1.84 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
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"lib": ["es6", "es2015", "dom"],
"declaration": true,
"strict": true,
"types": ["node", "jest"],
"esModuleInterop": true,
"resolveJsonModule": true,
"plugins": [{
"transform": "@zerollup/ts-transform-paths",
// these are the paths in the tsconfigs that should be ignored
// they have to be hardcoded and exactly what is in the tsconfigs
"exclude": [
"@modus/gimbal-core",
"@modus/gimbal-core/lib/*"
]
}],
/* Strict Type-Checking Options */
/* Raise error on expressions and declarations with an implied 'any' type. */
"noImplicitAny": true,
/* Enable strict null checks. */
"strictNullChecks": true,
/* Enable strict checking of function types. */
"strictFunctionTypes": true,
/* Enable strict checking of property initialization in classes. */
"strictPropertyInitialization": true,
/* Raise error on 'this' expressions with an implied 'any' type. */
"noImplicitThis": true,
/* Parse in strict mode and emit "use strict" for each source file. */
"alwaysStrict": true,
/* Additional Checks */
/* Report error when not all code paths in function return a value. */
"noImplicitReturns": true,
/* Report errors for fallthrough cases in switch statement. */
"noFallthroughCasesInSwitch": true,
/* Debugging Options */
/* Report module resolution log messages. */
"traceResolution": false,
/* Print names of generated files part of the compilation. */
"listEmittedFiles": false,
/* Print names of files part of the compilation. */
"listFiles": false,
/* Stylize errors and messages using color and context. */
"pretty": true
},
"exclude": [
"bin",
"lib",
"node_modules"
]
}