Skip to content

Commit e83509f

Browse files
authored
feat: remove baseUrl from TypeScript configurations for future compiler compatibility (#4925)
1 parent 74bf4c6 commit e83509f

File tree

16 files changed

+2
-17
lines changed

16 files changed

+2
-17
lines changed

examples/snippets/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"noEmit": true
65
}
76
}

layers/bin/layers.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/usr/bin/env node
22
import 'source-map-support/register';
33
import { App } from 'aws-cdk-lib';
4-
import { CanaryStack } from 'layers/src/canary-stack';
5-
import { LayerPublisherStack } from '../src/layer-publisher-stack';
4+
import { CanaryStack } from '../src/canary-stack.js';
5+
import { LayerPublisherStack } from '../src/layer-publisher-stack.js';
66

77
const SSM_PARAM_LAYER_ARN = '/layers/powertools-layer-arn';
88

packages/batch/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

packages/commons/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

packages/event-handler/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

packages/idempotency/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

packages/jmespath/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json"

packages/kafka/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

packages/logger/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

packages/metrics/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "../../tsconfig.json",
33
"compilerOptions": {
4-
"baseUrl": ".",
54
"outDir": "./lib/esm",
65
"rootDir": "./src",
76
"tsBuildInfoFile": ".tsbuildinfo/esm.json",

0 commit comments

Comments
 (0)