Files
djledda-web/deno.json
Daniel Ledda bcb820f35e nice
2024-10-31 23:46:23 +01:00

32 lines
893 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-router": "npm:vue-router@4.4.5",
"vue/jsx-runtime": "npm:vue/jsx-runtime",
"@vue/devtools-api": "npm:@vue/devtools-api",
"@/": "./app/"
},
"nodeModulesDir": "auto",
"compilerOptions": {
"jsx": "react-jsx",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"jsxImportSource": "vue",
"lib": [
"deno.ns",
"esnext",
"dom",
"dom.iterable"
]
}
}