blob: 98f36a78dcd18cc86bdb8f733e6e198242d17276 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import "./vendor/standalone.js";
import "./vendor/parser_typescript.js";
import "./vendor/parser_babylon.js";
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 };
|