21 lines
No EOL
334 B
TypeScript
21 lines
No EOL
334 B
TypeScript
export const DEFAULT_ZOOM = 16;
|
|
export const ZOOM_FACTOR = 4;
|
|
export const CODE_FORMATS = [
|
|
"js",
|
|
"jsx",
|
|
"ts",
|
|
"tsx",
|
|
"json",
|
|
"css",
|
|
"html",
|
|
"xml",
|
|
"yml"
|
|
];
|
|
|
|
export const EXTENSION_TO_LANGUAGE: Record<string, string> = {
|
|
"js": "javascript",
|
|
"jsx": "javascript",
|
|
"ts": "typescript",
|
|
"tsx": "typescript",
|
|
"yml": "yaml",
|
|
}; |