Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / @typescript-eslint / types / dist / parser-options.d.ts
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/types/dist/parser-options.d.ts b/.config/coc/extensions/node_modules/coc-prettier/node_modules/@typescript-eslint/types/dist/parser-options.d.ts
new file mode 100644 (file)
index 0000000..0b2abc8
--- /dev/null
@@ -0,0 +1,29 @@
+import { Lib } from './lib';
+declare type DebugLevel = boolean | ('typescript-eslint' | 'eslint' | 'typescript')[];
+declare type EcmaVersion = 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 2015 | 2016 | 2017 | 2018 | 2019 | 2020;
+declare type SourceType = 'script' | 'module';
+interface ParserOptions {
+    ecmaFeatures?: {
+        globalReturn?: boolean;
+        jsx?: boolean;
+    };
+    ecmaVersion?: EcmaVersion;
+    lib?: Lib[];
+    comment?: boolean;
+    debugLevel?: DebugLevel;
+    errorOnTypeScriptSyntacticAndSemanticIssues?: boolean;
+    errorOnUnknownASTType?: boolean;
+    extraFileExtensions?: string[];
+    filePath?: string;
+    loc?: boolean;
+    project?: string | string[];
+    projectFolderIgnoreList?: (string | RegExp)[];
+    range?: boolean;
+    sourceType?: SourceType;
+    tokens?: boolean;
+    tsconfigRootDir?: string;
+    useJSXTextNode?: boolean;
+    warnOnUnsupportedTypeScriptVersion?: boolean;
+}
+export { DebugLevel, EcmaVersion, ParserOptions, SourceType };
+//# sourceMappingURL=parser-options.d.ts.map
\ No newline at end of file