-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
not working with es6 #2
Comments
@Bnaimy |
this is file .babelrc inside package.json
|
@Bnaimy {
"name": "app",
"version": "1.0.0",
"babel": {
"presets": [],
"plugins": [
"react-directives"
],
"options": {
"prefix": "x",
"pragmaType": "React"
}
}
} It is invalid, correct configuration: {
"name": "app",
"version": "1.0.0",
"babel": {
"presets": [],
"plugins": [
[
"react-directives",
{
"prefix": "x",
"pragmaType": "React"
}
]
]
}
} You can learn more at https://babeljs.io/docs/en/plugins#plugin-options, and optimize the documentation later. And the option {
"name": "app",
"version": "1.0.0",
"babel": {
"presets": [],
"plugins": [
"react-directives"
]
}
} |
it's work thanks and waiting for features good jobs |
hi I am really like this project because is very difficult to write code without directive
I really I don't know why is not working ,
just if you can init a project with configuration of your project ??
The text was updated successfully, but these errors were encountered: