Files
WorkshopBlockchainGift/jest.setup.ts
2026-03-07 14:15:48 +03:00

8 lines
206 B
TypeScript

import { buildAllTact } from '@ton/blueprint';
import * as dotenv from 'dotenv';
export default async function () {
dotenv.config(); // Load environment variables from .env
await buildAllTact();
}