Skip to content

Commit 2b236c3

Browse files
committed
Fix: Rootdir path
1 parent 336d7d7 commit 2b236c3

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

typescript/ec2-instance-connect-endpoint/tsconfig.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,19 @@
2323
"./node_modules/@types"
2424
],
2525
"outDir": "lib",
26-
"rootDir": "."
26+
"rootDir": "../..",
27+
"baseUrl": ".",
28+
"paths": {
29+
"../../test-utils/*": ["../../test-utils/*"]
30+
}
2731
},
2832
"exclude": [
2933
"node_modules",
30-
"cdk.out"
34+
"cdk.out",
35+
"lib"
36+
],
37+
"include": [
38+
"**/*.ts",
39+
"../../test-utils/**/*.ts"
3140
]
3241
}

0 commit comments

Comments
 (0)