UEA-PRODEM
This commit is contained in:
+11
@@ -3,7 +3,18 @@ import { ParserOptions, TransformOptions } from "@babel/core";
|
||||
|
||||
//#region src/index.d.ts
|
||||
interface Options {
|
||||
/**
|
||||
* Can be used to process extra files like `.mdx`
|
||||
* @example include: /\.(mdx|js|jsx|ts|tsx)$/
|
||||
* @default /\.[tj]sx?$/
|
||||
*/
|
||||
include?: string | RegExp | Array<string | RegExp>;
|
||||
/**
|
||||
* Can be used to exclude JSX/TSX files that runs in a worker or are not React files.
|
||||
* Except if explicitly desired, you should keep node_modules in the exclude list
|
||||
* @example exclude: [/\/pdf\//, /\.solid\.tsx$/, /\/node_modules\//]
|
||||
* @default /\/node_modules\//
|
||||
*/
|
||||
exclude?: string | RegExp | Array<string | RegExp>;
|
||||
/**
|
||||
* Control where the JSX factory is imported from.
|
||||
|
||||
Reference in New Issue
Block a user