mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
Migrated the import shortcut used in Svelte from @ to @graphite for better future package compatibility Co-authored-by: Andre Roelofs <andreroelofsai@gmail.com> Co-authored-by: Keavon Chambers <keavon@keavon.com>
13 lines
470 B
TypeScript
13 lines
470 B
TypeScript
// This file is the browser's entry point for the JS bundle
|
|
|
|
// reflect-metadata allows for runtime reflection of types in JavaScript.
|
|
// It is needed for class-transformer to work and is imported as a side effect.
|
|
// The library replaces the Reflect API on the window to support more features.
|
|
import "reflect-metadata";
|
|
|
|
import App from "@graphite/App.svelte";
|
|
|
|
document.body.setAttribute("data-app-container", "");
|
|
|
|
export default new App({ target: document.body });
|