23 lines
499 B
JSON
23 lines
499 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"jsx": "preserve",
|
|
"noEmit": true,
|
|
"isolatedModules": true,
|
|
"strict": true,
|
|
"moduleResolution": "node",
|
|
"baseUrl": ".",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"types": ["cypress", "@testing-library/cypress"]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"vite.config.js"
|
|
]
|
|
}
|