// Fixture with packages imported, but nothing else import { Construct } from 'constructs'; import { Stack, Duration } from 'aws-cdk-lib'; import * as events from 'aws-cdk-lib/aws-events'; import * as targets from 'aws-cdk-lib/aws-events-targets'; import * as codecommit from 'aws-cdk-lib/aws-codecommit'; import * as codebuild from 'aws-cdk-lib/aws-codebuild'; import * as sns from 'aws-cdk-lib/aws-sns'; import * as ecs from 'aws-cdk-lib/aws-ecs'; import * as iam from 'aws-cdk-lib/aws-iam'; import * as lambda from 'aws-cdk-lib/aws-lambda'; class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }