Open 1999 opened 3 months ago
Looks like there's a solution: using a "resolver" option for the plugin which hasn't been documented yet. I will try to build a sample resolver and see if it works for us.
"plugins": [
["@compiled/babel-plugin", {
"parserBabelPlugins": ["typescript", "jsx"],
"extensions": [".js", ".jsx", ".ts", ".tsx"],
"resolver": "./compiled-resolver.js"
}]
]
Describe the bug Our monorepo contains TS files. Babel plugin expects the required/imported files to exist when it is being used. However, we don't run the "build" command, therefore we don't have transpiled JS files.
The actual error message in our case looks like this:
To Reproduce Steps to reproduce the behavior:
@compiled/babel-plugin
in babel.config.jsonExpected behavior No error