esbuild-wasm-bundler/deno.json

20 lines
522 B
JSON
Raw Permalink Normal View History

2024-06-03 11:39:19 -04:00
{
2024-06-12 15:51:50 -04:00
"name": "@ttf/wasm-bundle",
2024-06-07 16:54:12 -04:00
"version": "0.1.0",
"exports": "./mod.ts",
2024-06-03 11:39:19 -04:00
"imports": {
"react": "https://esm.sh/preact@10.22.0/compat",
"react/": "https://esm.sh/preact@10.22.0/compat/",
2024-06-03 16:12:38 -04:00
"other": "./other.tsx",
2024-06-07 16:54:12 -04:00
"entry": "./app.tsx",
"config": "./deno.json"
2024-06-03 11:39:19 -04:00
},
2024-06-10 22:51:23 -04:00
"tasks": {
"go": "deno run -A bundler-inc.tsx",
"serve": "deno run -A serve.tsx"
},
2024-06-03 11:39:19 -04:00
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
}
}