-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
34 lines (30 loc) · 860 Bytes
/
.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
const { Eslint, TypeScriptAppProject } = require('projen');
const project = new TypeScriptAppProject({
name: "aws-cdk-exec",
authorName: "Paul Szabo",
authorAddress: "[email protected]",
repository: "https://github.com/pszabop/exec-cdk",
entrypoint: "lib/index.js", // XXX this shoulld be the default but it is not
keywords: [
"cdk",
"exec",
],
dependencies: {
"command-exists": "^1.2.9",
"@types/command-exists": "^1.2.0",
},
devDependencies: {
"aws-cdk": "^1.63.0",
"@aws-cdk/core": "^1.63.0",
"@aws-cdk/aws-dynamodb": "^1.63.0",
},
gitignore: [
'cdk.out/',
],
npmignore: [
'cdk.out/',
],
});
// had to reverse engineer this from a diff.
new Eslint(project, { dirs: ['src', 'test'], tsconfigPath: './tsconfig.jest.json'}).addIgnorePattern('test/badtestapp.ts');
project.synth();