-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
49 lines (44 loc) · 1.14 KB
/
.projenrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
const { off } = require('process');
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Ben Whaley',
cdkVersion: '2.53.0',
defaultReleaseBranch: 'main',
license: 'MIT',
gitignore: ['cdk.context.json', 'cdk.out'],
name: 'alternat',
repositoryUrl: '[email protected]:cdk-community/alternat.git',
tsconfig: {
compilerOptions: {
esModuleInterop: true,
},
},
eslintOptions: {
prettier: true,
},
license: 'MIT',
licensed: true,
jestOptions: {
coverageText: false,
},
bundledDeps: ['loglevel@^1.8.1'],
deps: ['loglevel@^1.8.1'],
keywords: ['alternat', 'aws', 'aws-cdk', 'cdk', 'cdk-construct', 'nat'],
description:
'A high availability implementation of NAT instances designed to reduce NAT Gateway data processing costs',
// Build dependencies for this module.
devDeps: [
'prettier@^2.5.1',
'eslint@^8.7.0',
'@typescript-eslint/parser@^5.0.1',
'typescript@^4.4.4',
'jest@^29.3.1',
],
});
project.eslint.addRules({
'prettier/prettier': [
'error',
{ singleQuote: true, semi: true, trailingComma: 'es5' },
],
});
project.synth();