/ .gitignore
.gitignore
1 # Build outputs 2 build/ 3 output/ 4 *.prover 5 *.verifier 6 *.circuit 7 8 # ADL compiler artifacts 9 .adl/ 10 *.avm 11 12 # IDE 13 .idea/ 14 .vscode/ 15 *.swp 16 *.swo 17 *~ 18 19 # OS 20 .DS_Store 21 Thumbs.db 22 23 # Logs 24 *.log 25 26 # Environment 27 .env 28 .env.local 29 30 # Test artifacts 31 coverage/ 32 test-results/ 33 34 # Dependencies (if any) 35 node_modules/ 36 target/