Skip to content

Commit d70607c

Browse files
committed
fix: new typescript 6 deprecations
1 parent a29c214 commit d70607c

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

packages/postDatedLambda/tests/testUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {NotifyDataItem} from "packages/common/commonTypes/lib/src"
1+
import {NotifyDataItem} from "@psu-common/commonTypes"
22

33
export function createMockPostModifiedDataItem(overrides: Partial<NotifyDataItem>): NotifyDataItem {
44
return {

tsconfig.defaults.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@
77
"sourceMap": true,
88
"composite": true,
99
"strict": true,
10-
"moduleResolution": "node",
10+
"types": [
11+
"node"
12+
],
13+
"moduleResolution": "bundler",
1114
"esModuleInterop": true,
1215
"skipLibCheck": true,
1316
"forceConsistentCasingInFileNames": true,
1417
"preserveConstEnums": true,
1518
"resolveJsonModule": true,
1619
"allowJs": true,
17-
"baseUrl": ".",
1820
"paths": {
1921
"@psu-common/commonTypes": [
2022
"./packages/common/commonTypes/src/*"

0 commit comments

Comments
 (0)