19 lines
370 B
JSON
19 lines
370 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"lib": ["ES2020", "DOM"],
|
||
|
|
"types": ["cypress", "@testing-library/cypress"],
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"strict": true,
|
||
|
|
"noEmit": true
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts",
|
||
|
|
"**/*.tsx"
|
||
|
|
]
|
||
|
|
}
|