-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
22 lines (22 loc) · 940 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"compilerOptions": {
"outDir": "./lib",
"target": "ES2022",
"module": "commonjs",
"types": ["node", "cypress"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"skipLibCheck": true,
},
"include": ["./index.ts", "on-fail-handler.ts"]
}