24 lines
673 B
JSON
24 lines
673 B
JSON
{
|
|
"tasks": {
|
|
"start": "deno --allow-read --allow-net --allow-env --allow-write --allow-run main.ts",
|
|
"watch": "deno --watch --allow-read --allow-net --allow-env --allow-write --allow-run main.ts"
|
|
"install": "deno install --entrypoint deps.ts"
|
|
},
|
|
"fmt": {
|
|
"lineWidth": 120,
|
|
"indentWidth": 4
|
|
},
|
|
"imports": {
|
|
"vue": "npm:vue@^3.5.12",
|
|
"vue/jsx-runtime": "npm:vue/jsx-runtime",
|
|
"@/": "./app/"
|
|
},
|
|
"nodeModulesDir": "auto",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment",
|
|
"jsxImportSource": "vue"
|
|
}
|
|
}
|