mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
19 lines
742 B
TypeScript
19 lines
742 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
/**
|
|
* Types are given here because parser files are big
|
|
* and it's much faster to give TS compiler just type declarations.
|
|
*/
|
|
// @deno-types="./vendor/standalone.d.ts"
|
|
import "./vendor/standalone.js";
|
|
// @deno-types="./vendor/parser_typescript.d.ts"
|
|
import "./vendor/parser_typescript.js";
|
|
// @deno-types="./vendor/parser_babylon.d.ts"
|
|
import "./vendor/parser_babylon.js";
|
|
// @deno-types="./vendor/parser_markdown.d.ts"
|
|
import "./vendor/parser_markdown.js";
|
|
|
|
// TODO: provide decent type declarions for these
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const { prettier, prettierPlugins } = window as any;
|
|
|
|
export { prettier, prettierPlugins };
|