In my project I'm using React and it's JSX format and Bublé trough rollup-plugin-buble with JSX support for compilation.
For some reason using rollup-plugin-root-import to resolve paths breaks Bublé transpilation functionality and Rollup throws an error (In configuration I had to add extensions: ['.js','.jsx']):
Error parsing xxx.jsx: Unexpected token (16:6) in xxx.jsx (this is where JSX markup is used).
There is no error when importing .js files, only the .jsx ones.
I've tried to debug this plugin and it seems that paths are correctly resolved however error pops up only when trying to resolve paths fro jsx files.
It looks like the JSX compilation is omitted for file paths resolved from root.
Tried with:
- rollup-plugin-root-import: 0.2.1
- rollup: 0.36.4, 0.37.0
- buble: 0.14.3, 0.15.1
- rollup-plugin-buble: 0.14.0, 0.15.0
In my project I'm using React and it's JSX format and Bublé trough rollup-plugin-buble with JSX support for compilation.
For some reason using rollup-plugin-root-import to resolve paths breaks Bublé transpilation functionality and Rollup throws an error (In configuration I had to add
extensions: ['.js','.jsx']):Error parsing xxx.jsx: Unexpected token (16:6) in xxx.jsx(this is where JSX markup is used).There is no error when importing
.jsfiles, only the.jsxones.I've tried to debug this plugin and it seems that paths are correctly resolved however error pops up only when trying to resolve paths fro jsx files.
It looks like the JSX compilation is omitted for file paths resolved from root.
Tried with: