method Application.prototype.compileimport { Application } from "https://dotland.deno.dev/x/aleph@v0.3.0-alpha.31/server/mod.ts"; compile(url: string, options?: { sourceCode?: string; forceCompile?: boolean; once?: boolean; }): Promise<Module>compile a moudle by given url, then cache on the disk. each moudle only be compiled once unless you set the forceCompile option to true. Parametersurl: stringoptionaloptions: { sourceCode?: string; forceCompile?: boolean; once?: boolean; } = [UNSUPPORTED]ReturnsPromise<Module>