blob: 3e85633a3398820b88d512e918a12123b8d262ca [file] [log] [blame]
export interface ParserOptions {
loc?: boolean;
comment?: boolean;
range?: boolean;
tokens?: boolean;
sourceType?: 'script' | 'module';
ecmaVersion?: 3 | 5 | 6 | 7 | 8 | 9 | 2015 | 2016 | 2017 | 2018;
ecmaFeatures?: {
globalReturn?: boolean;
jsx?: boolean;
};
filePath?: string;
project?: string | string[];
useJSXTextNode?: boolean;
errorOnUnknownASTType?: boolean;
errorOnTypeScriptSyntacticAndSemanticIssues?: boolean;
tsconfigRootDir?: string;
extraFileExtensions?: string[];
warnOnUnsupportedTypeScriptVersion?: boolean;
}
//# sourceMappingURL=ParserOptions.d.ts.map