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
API for a program transformer is
function transformer( program: ts.Program, args: any // opts from ts config ) => ...
Atm I don't see a way to set options
const transformer = new Transformer() .addTransformer(classNamesTransformer) // what do .addMock({ name: '@compiled/css-in-js', content: `export const ClassNames: any = () => null` }) .setFilePath('/index.tsx');
The text was updated successfully, but these errors were encountered:
Sure, let's add this. Will have to mull a bit what would be most appropriate, first stab:
const transformer = new Transformer() .addTransformer(transformer, transformerOptions)
Sorry, something went wrong.
No branches or pull requests
API for a program transformer is
Atm I don't see a way to set options
The text was updated successfully, but these errors were encountered: