Skip to content

Commit

Permalink
feat(esm): moving account delete monitor to esm
Browse files Browse the repository at this point in the history
  • Loading branch information
bassrock committed Jan 2, 2025
1 parent 5f14412 commit e995ad4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions infrastructure/account-delete-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.0",
"private": true,
"license": "MPL-2.0",
"type": "module",
"main": "dist/main.js",
"types": "dist/main.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/account-delete-monitor/src/dynamodb.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config } from './config';
import { config } from './config/index.ts';

import {
ApplicationDynamoDBTable,
Expand Down
6 changes: 3 additions & 3 deletions infrastructure/account-delete-monitor/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { config } from './config';
import { DynamoDB } from './dynamodb';
import { SQSEventLambda } from './sqsEventLambda';
import { config } from './config/index.ts';
import { DynamoDB } from './dynamodb.ts';
import { SQSEventLambda } from './sqsEventLambda.ts';

import { provider as archiveProvider } from '@cdktf/provider-archive';
import {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { config as stackConfig } from './config';
import { config as stackConfig } from './config/index.ts';

import { dataAwsSsmParameter } from '@cdktf/provider-aws';
import {
Expand Down

0 comments on commit e995ad4

Please sign in to comment.