.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / types / dist / parser-options.d.ts
1 import { Lib } from './lib';
2 declare type DebugLevel = boolean | ('typescript-eslint' | 'eslint' | 'typescript')[];
3 declare type EcmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020;
4 declare type SourceType = 'script' | 'module';
5 interface ParserOptions {
6     ecmaFeatures?: {
7         globalReturn?: boolean;
8         jsx?: boolean;
9     };
10     ecmaVersion?: EcmaVersion;
11     lib?: Lib[];
12     comment?: boolean;
13     debugLevel?: DebugLevel;
14     errorOnTypeScriptSyntacticAndSemanticIssues?: boolean;
15     errorOnUnknownASTType?: boolean;
16     extraFileExtensions?: string[];
17     filePath?: string;
18     loc?: boolean;
19     project?: string | string[];
20     projectFolderIgnoreList?: (string | RegExp)[];
21     range?: boolean;
22     sourceType?: SourceType;
23     tokens?: boolean;
24     tsconfigRootDir?: string;
25     useJSXTextNode?: boolean;
26     warnOnUnsupportedTypeScriptVersion?: boolean;
27 }
28 export { DebugLevel, EcmaVersion, ParserOptions, SourceType };
29 //# sourceMappingURL=parser-options.d.ts.map