pin new versions #13
10
checker.tsx
10
checker.tsx
@ -167,10 +167,10 @@ export async function Check()
|
||||
const importMap = imports.json.imports as Record<string, string>;
|
||||
const bake =async(obj:ConfigCheck)=> await Deno.writeTextFile(Deno.cwd()+"/"+obj.path, JSON.stringify(obj.json, null, "\t"));
|
||||
|
||||
importMap["react"] = `https://esm.sh/preact@10.18.1/compat`;
|
||||
importMap["react/"] = `https://esm.sh/preact@10.18.1/compat/`;
|
||||
importMap["@preact/signals"] = `https://esm.sh/@preact/signals@1.2.1`;
|
||||
importMap["@twind/core"] = `https://esm.sh/@twind/core@1.1.3`;
|
||||
importMap["react"] = `https://esm.sh/preact@10.20.2/compat`;
|
||||
importMap["react/"] = `https://esm.sh/preact@10.20.2/compat/`;
|
||||
importMap["@preact/signals"] = `https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2`;
|
||||
importMap["@twind/core"] = `https://esm.sh/v126/@twind/core@1.1.3/es2022/core.mjs`;
|
||||
importMap[">able/"] = `${RootHost}`;
|
||||
if(!importMap[">able/app.tsx"])
|
||||
{
|
||||
@ -200,7 +200,7 @@ export async function Check()
|
||||
{
|
||||
"lib": ["deno.window", "dom", "dom.iterable", "dom.asynciterable"],
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "react"
|
||||
"jsxImportSource": importMap["react"]
|
||||
}
|
||||
const optionsCurrent = config.json.compilerOptions as Record<string, string|string[]> || {};
|
||||
//const compLib:string[] = compOpts.lib as string[] || [];
|
||||
|
14
deno.jsonc
14
deno.jsonc
@ -1,11 +1,13 @@
|
||||
{
|
||||
"imports": {
|
||||
"react": "https://esm.sh/preact@10.18.1/compat",
|
||||
"react-original": "https://esm.sh/preact@10.18.1/compat",
|
||||
"react/": "https://esm.sh/preact@10.18.1/compat/",
|
||||
"@preact/signals": "https://esm.sh/@preact/signals@1.2.1",
|
||||
"signals-original": "https://esm.sh/@preact/signals@1.2.1",
|
||||
|
||||
"react": "https://esm.sh/preact@10.20.2/compat",
|
||||
"react-original": "https://esm.sh/preact@10.20.2/compat",
|
||||
"react/": "https://esm.sh/preact@10.20.2/compat/",
|
||||
"@preact/signals": "https://esm.sh/@preact/signals@1.2.3?deps=preact@10.20.2",
|
||||
"@twind/core": "https://esm.sh/@twind/core@1.1.3",
|
||||
|
||||
|
||||
">able/": "./",
|
||||
">able/app.tsx": "./app.tsx"
|
||||
},
|
||||
@ -19,7 +21,7 @@
|
||||
},
|
||||
"compilerOptions": {
|
||||
"jsx": "react-jsx",
|
||||
"jsxImportSource": "react",
|
||||
"jsxImportSource": "https://esm.sh/preact@10.20.2/compat",
|
||||
"lib": [
|
||||
"deno.window",
|
||||
"dom",
|
||||
|
Loading…
Reference in New Issue
Block a user