Skip to content

Commit 5bd86f7

Browse files
aws-cdk-automationgithub-actions
and
github-actions
authored
chore(deps): upgrade dependencies (#357)
Upgrades project dependencies. See details in [workflow run]. [Workflow Run]: https://github.com/aws/jsii-compiler/actions/runs/6319693580 ------ *Automatically created by projen via the "upgrade-maintenance-v5.1" workflow* Signed-off-by: github-actions <[email protected]> Co-authored-by: github-actions <[email protected]>
1 parent 3f89be2 commit 5bd86f7

File tree

5 files changed

+174
-163
lines changed

5 files changed

+174
-163
lines changed

Diff for: .projenrc.ts

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { javascript, JsonFile, JsonPatch, typescript, YamlFile } from 'projen';
2+
import { TypeScriptModuleResolution } from 'projen/lib/javascript';
23
import { BuildWorkflow } from './projenrc/build-workflow';
34
import { JsiiCalcFixtures } from './projenrc/fixtures';
45
import { ReleaseWorkflow } from './projenrc/release';
@@ -49,12 +50,20 @@ const project = new typescript.TypeScriptProject({
4950
esModuleInterop: false,
5051
noImplicitOverride: true,
5152
skipLibCheck: true,
53+
moduleResolution: TypeScriptModuleResolution.NODE16,
54+
module: 'node16',
5255

5356
sourceMap: true,
5457
inlineSourceMap: false,
5558
inlineSources: true,
5659
},
5760
},
61+
tsconfigDev: {
62+
compilerOptions: {
63+
moduleResolution: TypeScriptModuleResolution.NODE16,
64+
module: 'node16',
65+
},
66+
},
5867

5968
prettier: true,
6069
prettierOptions: {

Diff for: package.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: tsconfig.dev.json

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: tsconfig.json

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)