pulumi/lib/aws/tsconfig.json
joeduffy c7f0465c41 Make an aws/cloudformation module
This includes the original CloudFormation resource type in addition
to the various tag helpers.
2016-12-12 17:54:50 -08:00

38 lines
991 B
JSON

{
"compilerOptions": {
"outDir": "bin",
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"declaration": true,
"sourceMap": true,
"stripInternal": true,
"experimentalDecorators": true,
"pretty": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"strictNullChecks": true
},
"files": [
"index.ts",
"cloudformation/index.ts",
"cloudformation/resource.ts",
"cloudformation/tags.ts",
"ec2/index.ts",
"ec2/internetGateway.ts",
"ec2/route.ts",
"ec2/routeTable.ts",
"ec2/securityGroup.ts",
"ec2/securityGroupEgress.ts",
"ec2/securityGroupIngress.ts",
"ec2/subnet.ts",
"ec2/vpc.ts",
"ec2/vpcGatewayAttachment.ts",
"ec2/vpcPeeringConnection.ts"
]
}