We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cloned the repo on my local machine and run npm install. But now when I run ionic serve, I'm getting the following error,
The text was updated successfully, but these errors were encountered:
Probably the tsconfig file that is not handled the same way on unix.
https://stackoverflow.com/questions/31173738/typescript-getting-error-ts2304-cannot-find-name-require
You will need to play with the options yourself since I do not own a Windows machine. Let me know once you got it working
Sorry, something went wrong.
Just adding one single line in src\i18n\index.ts solve the issue "declare var require:any"
declare var require: any try { require.context("./", true, /^\.\/.*\.cson$/) } catch (error) { console.error('requireAll', error) }
No branches or pull requests
I cloned the repo on my local machine and run npm install. But now when I run ionic serve, I'm getting the following error,
The text was updated successfully, but these errors were encountered: