-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.ts
253 lines (242 loc) · 7.29 KB
/
.projenrc.ts
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
import * as path from "path";
import { NxMonorepoProject } from "@aws-prototyping-sdk/nx-monorepo";
import {
DocumentationFormat,
Language,
Library,
ModelLanguage,
TypeSafeApiProject,
} from "@aws-prototyping-sdk/type-safe-api";
import { AwsCdkTypeScriptApp } from "projen/lib/awscdk";
import { TypeScriptProject } from "projen/lib/typescript";
// Create the monorepo
const monorepo = new NxMonorepoProject({
name: "tsapi-smithy-client-example",
defaultReleaseBranch: "main",
devDeps: [
"@aws-prototyping-sdk/nx-monorepo",
"@aws-prototyping-sdk/type-safe-api",
],
gitignore: [".idea", "*.iml"],
});
// Create the API project
const api = new TypeSafeApiProject({
name: "myapi",
parent: monorepo,
outdir: "packages/api",
// Smithy as the model language. You can also use ModelLanguage.OPENAPI
model: {
language: ModelLanguage.SMITHY,
options: {
smithy: {
serviceName: {
namespace: "com.my.company",
serviceName: "MyApi",
},
smithyBuildOptions: {
projections: {
"smithy-ts-client": {
plugins: {
"typescript-codegen": {
package: "smithy-ts-client",
packageVersion: "0.0.1",
},
},
},
"ts-server" : {
"plugins": {
"typescript-ssdk-codegen" : {
"package" : "smithy-ts-server",
"packageVersion": "0.0.1"
}
}
},
},
maven: {
dependencies: [
"software.amazon.smithy.typescript:smithy-aws-typescript-codegen:0.12.0",
"software.amazon.smithy:smithy-validation-model:1.28.0",
],
},
},
},
},
},
// Generate types, client and server code in TypeScript, Python and Java
runtime: {
languages: [Language.TYPESCRIPT],
},
// CDK infrastructure in TypeScript
infrastructure: {
language: Language.TYPESCRIPT,
},
// Generate HTML documentation
documentation: {
formats: [DocumentationFormat.HTML_REDOC],
},
// Generate react-query hooks to interact with the UI from a React website
library: {
libraries: [Library.TYPESCRIPT_REACT_QUERY_HOOKS],
},
});
const smithyClient = new TypeScriptProject({
parent: monorepo,
outdir: "packages/smithy-ts-client",
name: "smithy-ts-client",
defaultReleaseBranch: "main",
sampleCode: false,
deps: [
"tslib",
"@aws-crypto/[email protected]",
"@aws-crypto/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
],
eslint: false,
tsconfig: {
compilerOptions: {
lib: ["dom", "es2019"],
noUnusedParameters: false,
noUnusedLocals: false,
noImplicitReturns: false,
},
},
});
// Make sure smithy client builds after model
monorepo.addImplicitDependency(smithyClient, api.model);
smithyClient.preCompileTask.exec("rm -rf src");
smithyClient.preCompileTask.exec(
`cp -r ${path.join(
path.relative(smithyClient.outdir, api.model.outdir),
"build",
"smithyprojections",
"myapi-model",
"smithy-ts-client",
"typescript-codegen",
"src"
)} src`
);
smithyClient.gitignore.addPatterns("src");
const smithyServerSdk = new TypeScriptProject({
parent: monorepo,
outdir: "packages/smithy-ts-server",
name: "smithy-ts-server",
defaultReleaseBranch: "main",
sampleCode: false,
deps: [
"tslib",
"@aws-crypto/[email protected]",
"@aws-crypto/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-sdk/[email protected]",
"@aws-smithy/[email protected]",
],
eslint: false,
tsconfig: {
compilerOptions: {
lib: ["dom", "es2019"],
noUnusedParameters: false,
noUnusedLocals: false,
noImplicitReturns: false,
},
},
});
// Make sure smithy client builds after model
monorepo.addImplicitDependency(smithyServerSdk, api.model);
smithyServerSdk.preCompileTask.exec("rm -rf src");
smithyServerSdk.preCompileTask.exec(
`cp -r ${path.join(
path.relative(smithyServerSdk.outdir, api.model.outdir),
"build",
"smithyprojections",
"myapi-model",
"ts-server",
"typescript-ssdk-codegen",
"src"
)} src`
);
smithyServerSdk.gitignore.addPatterns("src");
new TypeScriptProject({
parent: monorepo,
name: "caller-example",
outdir: "packages/caller-example",
defaultReleaseBranch: "main",
deps: [
smithyClient.package.packageName,
],
tsconfig: {
compilerOptions: {
lib: ['dom', 'es2019'],
skipLibCheck: true,
},
},
});
// Create a CDK infrastructure project. Can also consider PDKPipelineTsProject as an alternative!
const infra = new AwsCdkTypeScriptApp({
defaultReleaseBranch: "main",
cdkVersion: "2.0.0",
parent: monorepo,
outdir: "packages/infra",
name: "myinfra",
deps: [
"@aws-prototyping-sdk/type-safe-api",
smithyServerSdk.package.packageName,
"@aws-smithy/[email protected]",
"@aws-smithy/[email protected]",
],
devDeps: [
"@types/aws-lambda",
],
});
// Infrastructure can depend on the generated API infrastructure and runtime
infra.addDeps(api.infrastructure.typescript!.package.packageName);
infra.addDeps(api.runtime.typescript!.package.packageName);
monorepo.synth();