djledda.de main
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 

24 satır
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. }