Interface: Workspace
Defined in: src/config/types.ts:128
Properties
config?
ts
optional config?: string | boolean;Defined in: src/config/types.ts:146
Path to the workspace configuration file.
exclude?
ts
optional exclude?: Arrayable<string>;Defined in: src/config/types.ts:141
Exclude directories from workspace. Defaults to all node_modules, dist, test, tests, temp, and tmp directories.
Default
ts
;['**/node_modules/**', '**/dist/**', '**/test?(s)/**', '**/t?(e)mp/**']include?
ts
optional include?: string[] | string & object | "auto";Defined in: src/config/types.ts:134
Workspace directories. Glob patterns are supported.
auto: Automatically detectpackage.jsonfiles in the workspace.
Default
ts
'auto'