Skip to content

Commit 655b77c

Browse files
authored
Fix relative path for schema files (#352)
1 parent e67a366 commit 655b77c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

server/src/cfnServerInit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export class CfnServerInit {
9090
);
9191

9292
readFile(
93-
path.join(__dirname, `../../../schema/base.schema.json`),
93+
path.join(__dirname, `../schema/base.schema.json`),
9494
"utf8",
9595
(err, data) => {
9696
if (err) {

server/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "../tsconfig.base.json",
3-
"compilerOptions": {
3+
"compilerOptions": {
44
"target": "es6",
55
"module": "commonjs",
66
"moduleResolution": "node",

0 commit comments

Comments
 (0)