UNPKG

@nrwl/workspace

Version:

The Workspace plugin contains executors and generators that are useful for any Nx workspace. It should be present in every Nx workspace and other plugins build on it.

24 lines (22 loc) 604 B
// nx-ignore-next-line const { Linter } = require('@nrwl/linter'); // use require to import to avoid circular dependency export interface Schema { name: string; directory?: string; skipTsConfig?: boolean; skipFormat?: boolean; tags?: string; simpleModuleName?: boolean; unitTestRunner?: 'jest' | 'none'; linter?: Linter; testEnvironment?: 'jsdom' | 'node'; importPath?: string; js?: boolean; babelJest?: boolean; pascalCaseFiles?: boolean; strict?: boolean; skipBabelrc?: boolean; buildable?: boolean; setParserOptionsProject?: boolean; standaloneConfig?: boolean; }