djledda.de main
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 

24 Zeilen
674 B

  1. {
  2. "tasks": {
  3. "start": "deno --allow-read --allow-net --allow-env --allow-write --allow-run main.ts",
  4. "watch": "deno --watch --allow-read --allow-net --allow-env --allow-write --allow-run main.ts",
  5. "install": "deno install --entrypoint deps.ts"
  6. },
  7. "fmt": {
  8. "lineWidth": 120,
  9. "indentWidth": 4
  10. },
  11. "imports": {
  12. "vue": "npm:vue@^3.5.12",
  13. "vue/jsx-runtime": "npm:vue/jsx-runtime",
  14. "@/": "./app/"
  15. },
  16. "nodeModulesDir": "auto",
  17. "compilerOptions": {
  18. "jsx": "react-jsx",
  19. "jsxFactory": "h",
  20. "jsxFragmentFactory": "Fragment",
  21. "jsxImportSource": "vue"
  22. }
  23. }