-
-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathtsconfig.types.json
More file actions
30 lines (27 loc) · 724 Bytes
/
tsconfig.types.json
File metadata and controls
30 lines (27 loc) · 724 Bytes
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
{
/**
* TypeScript configuration for the type files.
*
* Running tsc on types is extremely sensible to the node_modules folder so we wrap the tsc command in a script
* @see types-checks-filter-out-node_modules.js
*/
"compilerOptions": {
"target": "ES2022",
"strictBindCallApply": true,
"noImplicitAny": true,
// Must stay commented to ensure that the types are actually validated
// "skipLibCheck": true,
"strictPropertyInitialization": true,
"strictNullChecks": true,
"allowSyntheticDefaultImports": true,
"types": [
"@wdio/types",
],
"moduleResolution": "node",
"noEmit": true,
},
"include": [
"*.d.ts",
"./types/*.d.ts"
],
}