|
- {
- "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"
- ]
- }
- }
|