configFile is invalid with Remix-run project #28364
Replies: 2 comments 2 replies
-
|
After playing around... I don't understand how, but i managed to fix it by just:
|
Beta Was this translation helpful? Give feedback.
1 reply
-
|
Setting {
"include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"],
"compilerOptions": {
"module": "esnext",
"lib": ["DOM", "DOM.Iterable", "ES2022"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ES2022",
"strict": true,
"allowJs": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"~/*": ["./app/*"]
},
"noEmit": true
}
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Newly created React/Remix-run project. Installed cypress with
yarn add -D cypress.Run
yarn cypress openand accepted basic configuration files.And now UI and CLI shows same error:
This both weird and not understandable...
Using cypress v13.5.1 (tried 13.5.0 - same here)
NodeJS is at version: v20.9.0
Giving you a
tsconfig.json- maybe there something wrong...{ "include": ["remix.env.d.ts", "**/*.ts", "**/*.tsx"], "compilerOptions": { "lib": ["DOM", "DOM.Iterable", "ES2022"], "isolatedModules": true, "esModuleInterop": true, "jsx": "react-jsx", "moduleResolution": "Bundler", "resolveJsonModule": true, "target": "ES2022", "strict": true, "allowJs": true, "forceConsistentCasingInFileNames": true, "baseUrl": ".", "paths": { "~/*": ["./app/*"] }, // Remix takes care of building everything in `remix build`. "noEmit": true } }and also
cypress.config.ts(to prove that it is basic):Update: Found something when "install process" is called
In post install scripts i getting next error:
Beta Was this translation helpful? Give feedback.
All reactions