The frontend component of PuffPastry, meant to interface with the backend, which in turn interfaces with the smart contract.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

tsconfig.node.json 479 B

hace 2 meses
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. }