-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig-common.json
33 lines (33 loc) · 1.17 KB
/
tsconfig-common.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
// This file contains common compiler options that are used by all tsconfigs
/* Visit https://aka.ms/tsconfig to read more about this file */
{
"compilerOptions": {
"typeRoots": [
"./node_modules/@types",
"./types"
],
/* Language and Environment */
"target": "ES2016",
"jsx": "preserve",
/* Modules */
// Required for dynamic imports even though we aren't using
// tsc to output any modules.
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
// TODO(FEI-5020): Enable this setting, there are 242 errors from it when last checked
// "noImplicitAny": true,
/* Completeness */
"skipDefaultLibCheck": true, // it's safe to assume that built-in .d.ts files are correct
"skipLibCheck": true
}
}