fix type checking for cypress
This commit is contained in:
@@ -2,5 +2,7 @@
|
|||||||
"extends": "../tsconfig.json",
|
"extends": "../tsconfig.json",
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"types": ["cypress", "@testing-library/cypress"]
|
"types": ["cypress", "@testing-library/cypress"]
|
||||||
}
|
},
|
||||||
|
"include": ["."],
|
||||||
|
"exclude": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
"test-dev": "pnpm dev & wait-on http-get://localhost:3000 && cypress open",
|
"test-dev": "pnpm dev & wait-on http-get://localhost:3000 && cypress open",
|
||||||
"build": "typedoc && remix build",
|
"build": "typedoc && remix build",
|
||||||
"start": "remix-serve build",
|
"start": "remix-serve build",
|
||||||
"typecheck": "tsc --noEmit"
|
"typecheck": "tsc --noEmit && tsc --project cypress/tsconfig.json --noEmit"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@heroicons/react": "^1.0.5",
|
"@heroicons/react": "^1.0.5",
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
"**/dist/**",
|
"**/dist/**",
|
||||||
"**/.cache/**",
|
"**/.cache/**",
|
||||||
"**/api/_build/**",
|
"**/api/_build/**",
|
||||||
"**/public/**"
|
"**/public/**",
|
||||||
|
"**/cypress/**"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user