The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

tsconfig.node.json 479 B

před 2 měsíci
12345678910111213141516171819202122
  1. {
  2. "compilerOptions": {
  3. "target": "ES2022",
  4. "lib": ["ES2023"],
  5. "module": "ESNext",
  6. "skipLibCheck": true,
  7. /* Bundler mode */
  8. "moduleResolution": "bundler",
  9. "allowImportingTsExtensions": true,
  10. "isolatedModules": true,
  11. "moduleDetection": "force",
  12. "noEmit": true,
  13. /* Linting */
  14. "strict": true,
  15. "noUnusedLocals": true,
  16. "noUnusedParameters": true,
  17. "noFallthroughCasesInSwitch": true
  18. },
  19. "include": ["vite.config.ts"]
  20. }