-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: allow prettier to run on src/types
- Loading branch information
Showing
2 changed files
with
27 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ priv | |
node_modules | ||
dist | ||
types | ||
!src/types | ||
assets | ||
data | ||
.storybook | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
import {TsConfigJson} from "type-fest"; | ||
|
||
export interface DTSPluginOpts { | ||
/** | ||
* override the directory to output to. | ||
* @deprecated define declarationDir in tsconfig instead | ||
*/ | ||
outDir?: string; | ||
/** | ||
* path to the tsconfig to use. (some monorepos might need to use this) | ||
*/ | ||
tsconfig?: string | TsConfigJson; | ||
/** | ||
* Directory to store build info files in (only if using incremental builds and no tsBuildInfoFile is defined in tsconfig) | ||
* @default os tmp directory | ||
*/ | ||
buildInfoDir?: string; | ||
/** | ||
* EXPERIMENTAL: Set to true to bundle the declarations into single files | ||
*/ | ||
experimentalBundling?: boolean; | ||
/** | ||
* For testing purposes, allows adding a context to different builds with the same tsconfig. | ||
*/ | ||
__buildContext?: any; | ||
} | ||
import { TsConfigJson } from "type-fest"; | ||
|
||
export interface DTSPluginOpts { | ||
/** | ||
* override the directory to output to. | ||
* @deprecated define declarationDir in tsconfig instead | ||
*/ | ||
outDir?: string; | ||
/** | ||
* path to the tsconfig to use. (some monorepos might need to use this) | ||
*/ | ||
tsconfig?: string | TsConfigJson; | ||
/** | ||
* Directory to store build info files in (only if using incremental builds and no tsBuildInfoFile is defined in tsconfig) | ||
* @default os tmp directory | ||
*/ | ||
buildInfoDir?: string; | ||
/** | ||
* EXPERIMENTAL: Set to true to bundle the declarations into single files | ||
*/ | ||
experimentalBundling?: boolean; | ||
/** | ||
* For testing purposes, allows adding a context to different builds with the same tsconfig. | ||
*/ | ||
__buildContext?: any; | ||
} |