mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* chore: update project * refactor: clear module-name cache on orientation * feat: add custom component in qualifiers app * feat: enable HMR for custom components * refactor: remove redundant check * chore: clean console.log
8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import * as application from "tns-core-modules/application";
|
|
import { setCategories, categories, enable } from "tns-core-modules/trace";
|
|
|
|
setCategories(categories.Livesync);
|
|
enable();
|
|
|
|
application.run({ moduleName: "app-root" });
|