Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

deno.json 1020B

1234567891011121314151617181920212223242526272829
  1. {
  2. "nodeModulesDir": "auto",
  3. "tasks": {
  4. "dev": "deno run -A --node-modules-dir npm:vite",
  5. "build": "deno run -A --node-modules-dir npm:vite build",
  6. "preview": "deno run -A --node-modules-dir npm:vite preview",
  7. "serve": "deno run --allow-net --allow-read jsr:@std/http@1/file-server dist/"
  8. },
  9. "compilerOptions": {
  10. "lib": [
  11. "ES2020",
  12. "DOM",
  13. "DOM.Iterable"
  14. ],
  15. "jsx": "react-jsx",
  16. "jsxImportSource": "react",
  17. "jsxImportSourceTypes": "@types/react"
  18. },
  19. "imports": {
  20. "@deno/vite-plugin": "npm:@deno/vite-plugin@^1.0.0",
  21. "@types/react": "npm:@types/react@^18.3.12",
  22. "@types/react-dom": "npm:@types/react-dom@^18.3.1",
  23. "@vitejs/plugin-react-swc": "npm:@vitejs/plugin-react-swc@^3.7.1",
  24. "framer-motion": "npm:framer-motion@^11.15.0",
  25. "react": "npm:react@^18.3.1",
  26. "react-dom": "npm:react-dom@^18.3.1",
  27. "vite": "npm:vite@^6.0.1"
  28. }
  29. }