shellphone.app/cypress/tsconfig.json
2022-05-14 12:22:06 +02:00

27 lines
542 B
JSON

{
"include": [
"./index.ts",
"integration/**/*",
"plugins/**/*",
"support/**/*",
"../node_modules/cypress",
"../node_modules/@testing-library/cypress"
],
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"types": ["node", "cypress", "@testing-library/cypress"],
"esModuleInterop": true,
"jsx": "react",
"moduleResolution": "node",
"target": "es2019",
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"typeRoots": ["../node_modules/@types"],
"paths": {
"~/*": ["../app/*"]
}
}
}