mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-16 17:10:12 +00:00
30 lines
661 B
JSON
30 lines
661 B
JSON
|
{
|
||
|
"exclude": [
|
||
|
"../node_modules/@types/jest",
|
||
|
"../node_modules/@testing-library/jest-dom"
|
||
|
],
|
||
|
"include": [
|
||
|
"e2e/**/*",
|
||
|
"support/**/*",
|
||
|
"../node_modules/cypress",
|
||
|
"../node_modules/@testing-library/cypress"
|
||
|
],
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"noEmit": true,
|
||
|
"types": ["node", "cypress", "@testing-library/cypress"],
|
||
|
"esModuleInterop": true,
|
||
|
"jsx": "react-jsx",
|
||
|
"moduleResolution": "node",
|
||
|
"target": "es2019",
|
||
|
"strict": true,
|
||
|
"skipLibCheck": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"typeRoots": ["../types", "../node_modules/@types"],
|
||
|
|
||
|
"paths": {
|
||
|
"~/*": ["../app/*"]
|
||
|
}
|
||
|
}
|
||
|
}
|