UNPKG

550 BTypeScriptView Raw
1// nx-ignore-next-line
2const { Linter } = require('@nrwl/linter');
3
4export interface Schema {
5 name: string;
6 directory?: string;
7 skipTsConfig?: boolean;
8 skipFormat?: boolean;
9 tags?: string;
10 simpleModuleName?: boolean;
11 unitTestRunner?: 'jest' | 'none';
12 linter?: Linter;
13 testEnvironment?: 'jsdom' | 'node';
14 importPath?: string;
15 js?: boolean;
16 babelJest?: boolean;
17 pascalCaseFiles?: boolean;
18 strict?: boolean;
19 skipBabelrc?: boolean;
20 buildable?: boolean;
21 setParserOptionsProject?: boolean;
22 standaloneConfig?: boolean;
23}