Update
This commit is contained in:
13
dist/config/index.d.ts
vendored
13
dist/config/index.d.ts
vendored
@ -7,6 +7,16 @@ export type Middleware =
|
||||
| (() => Promise<MiddlewareResult>)
|
||||
| (() => Promise<{ default: MiddlewareResult }>);
|
||||
|
||||
export type Environment =
|
||||
| 'react'
|
||||
| 'reactRefresh'
|
||||
| 'tailwind'
|
||||
| 'storybook'
|
||||
| 'reactQuery'
|
||||
| 'testingLibrary'
|
||||
| 'jsdoc'
|
||||
| 'vitest';
|
||||
|
||||
export interface NormalizedExtendConfigOptions {
|
||||
auto?: boolean;
|
||||
middlewares?: Middleware[];
|
||||
@ -15,6 +25,9 @@ export interface NormalizedExtendConfigOptions {
|
||||
* Use `.gitignore` file to exclude files from ESLint.
|
||||
*/
|
||||
gitignore?: boolean;
|
||||
env?: {
|
||||
[key in Environment]?: boolean;
|
||||
};
|
||||
}
|
||||
|
||||
export type ExtendConfigOptions =
|
||||
|
Reference in New Issue
Block a user