Skip to content

Commit

Permalink
fix: running prism cli threw exception (#190)
Browse files Browse the repository at this point in the history
- Class constructor Command cannot be invoked without 'new'

SL-2021
  • Loading branch information
chris-miaskowski committed Mar 8, 2019
1 parent 7c61c62 commit 1893ccc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/cli/tsconfig.build.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
"extends": "../tsconfig.build.json",
"compilerOptions": {
"rootDir": "src",
"outDir": "lib"
"outDir": "lib",
"target": "es2017"
},
"include": ["src"],
"references": [
Expand Down
5 changes: 3 additions & 2 deletions packages/cli/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "../tsconfig.json",
"compilerOptions": {
"module":"commonjs",
"moduleResolution": "node"
"module": "commonjs",
"moduleResolution": "node",
"target": "es2017"
}
}

0 comments on commit 1893ccc

Please sign in to comment.