// Fixture with packages imported, but nothing else import { Construct } from 'constructs'; import { Duration, Stack } from '@aws-cdk/core'; import dynamodb = require('@aws-cdk/aws-dynamodb'); import iam = require('@aws-cdk/aws-iam'); class Fixture extends Stack { constructor(scope: Construct, id: string) { super(scope, id); /// here } }