27 lines
542 B
JSON
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/*"]
|
|
}
|
|
}
|
|
}
|