forked from NeuraLegion/cypress-har-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
37 lines (37 loc) · 1.14 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es2016",
"lib": ["es2020", "dom"],
"newLine": "LF",
"module": "commonjs",
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"sourceMap": true,
"strict": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"noEmitOnError": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
// FIXME: enable the two flags below
"noUncheckedIndexedAccess": false,
"exactOptionalPropertyTypes": false,
"forceConsistentCasingInFileNames": true,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"importHelpers": true,
"downlevelIteration": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"typeRoots": ["node_modules/@types", "typings"],
"types": ["cypress", "node", "chrome-remote-interface"]
},
"exclude": ["node_modules", "dist", "example", "**/.*/"]
}