UNPKG

609 BTypeScriptView Raw
1export interface ParserOptions {
2 loc?: boolean;
3 comment?: boolean;
4 range?: boolean;
5 tokens?: boolean;
6 sourceType?: 'script' | 'module';
7 ecmaVersion?: number;
8 ecmaFeatures?: {
9 globalReturn?: boolean;
10 jsx?: boolean;
11 };
12 filePath?: string;
13 project?: string | string[];
14 useJSXTextNode?: boolean;
15 errorOnUnknownASTType?: boolean;
16 errorOnTypeScriptSyntacticAndSemanticIssues?: boolean;
17 tsconfigRootDir?: string;
18 extraFileExtensions?: string[];
19 warnOnUnsupportedTypeScriptVersion?: boolean;
20}
21//# sourceMappingURL=parser-options.d.ts.map
\No newline at end of file