The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 
 

23 rader
479 B

  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. }