-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig-shared.json
29 lines (29 loc) · 1023 Bytes
/
tsconfig-shared.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
/* Visit https://aka.ms/tsconfig to read more about this file */
{
"compilerOptions": {
/* Language and Environment */
"target": "es2022",
"lib": [
"es2023"
],
/* Modules */
// Required for dynamic imports even though we aren't using
// tsc to output any modules.
"module": "node16",
"moduleResolution": "node16",
"resolveJsonModule": true,
/* Interop Constraints */
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"strictBindCallApply": true,
"noImplicitAny": true,
/* Completeness */
"skipDefaultLibCheck": true, // it's safe to assume that built-in .d.ts files are correct
"skipLibCheck": true // Have to skip node_modules or we'll get errors from third party libs
}
}