The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
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.

tsconfig.node.json 479 B

2 ay önce
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. }