24 lines
653 B
JSON
24 lines
653 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"module": "ESNext",
|
|
"allowJs": true,
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitAny": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"skipLibCheck": true
|
|
// "strictNullChecks": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"cypress"
|
|
]
|
|
}
|